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

From wikieduonline
Jump to navigation Jump to search
Line 25: Line 25:
 
== See also ==
 
== See also ==
 
* {{Ansible modules}}
 
* {{Ansible modules}}
* {{Ansible}}
 
  
 
[[Category:Ansible]]
 
[[Category:Ansible]]

Revision as of 10:13, 25 March 2022

#!/usr/bin/env ansible-playbook
- hosts: localhost
  become: yes

  tasks:
    - shell:
          uptime


#!/usr/bin/env ansible-playbook
- hosts: localhost
  become: yes

  tasks:
    - shell: uptime
     register: my_shell_output

    - debug: var=my_shell_output.stdout_lines

Related


See also

Advertising: