shell: (Ansible module)

From wikieduonline
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


See also

Advertising: