Difference between revisions of "Shell: (Ansible module)"
Jump to navigation
Jump to search
(Created page with " #!/usr/bin/env ansible-playbook - hosts: localhost become: yes tasks: - shell: uptime == See also == * {{Ansible modules}} Category:Ansible") |
|||
(12 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | {{lowercase}} | ||
#!/usr/bin/env ansible-playbook | #!/usr/bin/env ansible-playbook | ||
− | |||
- hosts: localhost | - hosts: localhost | ||
become: yes | become: yes | ||
Line 6: | Line 6: | ||
tasks: | tasks: | ||
- shell: | - shell: | ||
− | uptime | + | [[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 == | ||
+ | * <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]
- Ansible modules:
gather_facts, set_fact
,ansible.builtin.file
,lineinfile
,stat
,group
,mount
,git:
,package:
,command:
,shell:
,raw:
,template:
,register:
,user:
, Ansible playbooks examples,tasks:
,lineinfile, blockinfile:
,shell:
,command:
,raw:
,ansible.builtin.file, service:, aws.ecs_taskdefinition, aws.asg, docker_container, kubernetes.core.k8s
,community.
,include_tasks
Advertising: