shell: (Ansible module)

From wikieduonline
Revision as of 12:10, 8 September 2023 by Welcome (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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