Difference between revisions of "Ansible example: Install software"

From wikieduonline
Jump to navigation Jump to search
(Created page with " #!/usr/bin/env ansible-playbook - hosts: localhost become: yes tasks: - package: name: sysstat state: present == See also == * {{a...")
Tags: Mobile web edit, Mobile edit
 
 
(10 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 ==
 +
* [[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]

Advertising: