Difference between revisions of "Shell: (Ansible module)"

From wikieduonline
Jump to navigation Jump to search
(Created page with " #!/usr/bin/env ansible-playbook - hosts: localhost become: yes tasks: - shell: uptime == See also == * {{Ansible modules}} Category:Ansible")
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
  #!/usr/bin/env ansible-playbook
 
  #!/usr/bin/env ansible-playbook
 
 
  - hosts: localhost
 
  - hosts: localhost
 
   become: yes
 
   become: yes
Line 6: Line 5:
 
   tasks:
 
   tasks:
 
     - shell:
 
     - shell:
           uptime
+
           [[uptime]]
 +
 
  
 +
#!/usr/bin/env ansible-playbook
 +
- hosts: localhost
 +
  become: yes
 +
 +
  tasks:
 +
    - shell: [[uptime]]
 +
      register: my_shell_output
 +
 +
    - debug: var=my_shell_output.stdout_lines
  
  
 
== See also ==
 
== See also ==
 
* {{Ansible modules}}
 
* {{Ansible modules}}
 +
* {{Ansible}}
  
 
[[Category:Ansible]]
 
[[Category:Ansible]]

Revision as of 12:54, 25 November 2020

Advertising: