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

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 15: Line 15:
 
   tasks:
 
   tasks:
 
     - shell: [[uptime]]
 
     - shell: [[uptime]]
      register: my_shell_output
+
      [[register:]] my_shell_output
 
   
 
   
 
     - debug: var=my_shell_output.stdout_lines
 
     - debug: var=my_shell_output.stdout_lines
Line 25: Line 25:
 
== See also ==
 
== See also ==
 
* {{Ansible modules}}
 
* {{Ansible modules}}
* {{Ansible}}
 
  
 
[[Category:Ansible]]
 
[[Category:Ansible]]

Latest revision as of 12:10, 8 September 2023

#!/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[edit]


See also[edit]

Advertising: