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

From wikieduonline
Jump to navigation Jump to search
 
Line 21: Line 21:
 
== Related ==
 
== Related ==
 
* <code>[[command:]]</code>
 
* <code>[[command:]]</code>
 
+
* [[shell: GitHub actions]]
  
 
== See also ==
 
== See also ==

Latest revision as of 11:50, 23 August 2024

#!/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: