Difference between revisions of "Ansible example: Install software"
Jump to navigation
Jump to search
Tags: Mobile web edit, Mobile edit |
|||
(9 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
− | #!/usr/bin/env ansible-playbook | + | #![[/usr/bin/env]] [[ansible-playbook]] |
− | - hosts: localhost | + | - [[hosts:]] localhost |
− | become: yes | + | [[become:]] yes |
− | tasks: | + | [[tasks:]] |
- [[package:]] | - [[package:]] | ||
name: sysstat | name: sysstat | ||
state: present | state: present | ||
− | + | == Execution output == | |
+ | [WARNING]: [[provided hosts list is empty]], only localhost is available. Note that | ||
+ | the implicit localhost does not match 'all' | ||
+ | |||
+ | PLAY [localhost] *************************************************************** | ||
+ | |||
+ | TASK [Gathering Facts] ********************************************************* | ||
+ | ok: [localhost] | ||
+ | |||
+ | TASK [package] ***************************************************************** | ||
+ | changed: [localhost] | ||
+ | |||
+ | PLAY RECAP ********************************************************************* | ||
+ | localhost : ok=2 changed=1 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0 | ||
== Related terms == | == Related terms == | ||
* [[Ansible playbooks examples]] | * [[Ansible playbooks examples]] | ||
− | + | * <code>[[ansible-lint]]</code> | |
− | |||
== See also == | == See also == | ||
* {{ansible modules}} | * {{ansible modules}} | ||
+ | * {{ansible}} | ||
[[Category:Ansible]] | [[Category:Ansible]] |
Latest revision as of 15:48, 22 April 2022
#!/usr/bin/env ansible-playbook - hosts: localhost become: yes tasks: - package: name: sysstat state: present
Execution output[edit]
[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all' PLAY [localhost] *************************************************************** TASK [Gathering Facts] ********************************************************* ok: [localhost] TASK [package] ***************************************************************** changed: [localhost] PLAY RECAP ********************************************************************* localhost : ok=2 changed=1 unreachable=0 failed=0 skipped=0 rescued=0 ignored=0
Related terms[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
- Ansible: modules, plugins, Playbooks (examples)
ansible-playbook
,ansible-vault
,ansible-inventory
,ansible-config
, Ansible Tower, Ansible Galaxy (Roles) (ansible-galaxy
),ansible-cmdb
,gather facts
,ansible.cfg
,Ansible Molecule
, Ansible collections,register
,template
,--ask-pass
,--ask-become-pass
,remote_user:
,/etc/ansible/hosts
,ansible-doc
,ansible-lint
,.ansible/
,--forks
,--start-at-task
,changelog
,inventory
,Notify:
,ansible HOSTNAME -m ping
,gathering
,/usr/bin/ansible
,ansible -m ping
,ansible.builtin
,hosts: (Ansible)
,set fact:
,when:
,blockinfile:
,become method:
,include:
,git:
, AWX,ansible --help
, Tags, Ansible variables, versions
Advertising: