Difference between revisions of "Ansible example: Install software"

From wikieduonline
Jump to navigation Jump to search
Tags: Mobile web edit, Mobile edit
Tags: Mobile web edit, Mobile edit
Line 10: Line 10:
  
 
== Execution output ==
 
== Execution output ==
  [WARNING]: provided hosts list is empty, only localhost is available. Note that
+
  [WARNING]: [[provided hosts list is empty]], only localhost is available. Note that
 
  the implicit localhost does not match 'all'
 
  the implicit localhost does not match 'all'
 
   
 
   
Line 23: Line 23:
 
  PLAY RECAP *********************************************************************
 
  PLAY RECAP *********************************************************************
 
  localhost                  : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
 
  localhost                  : ok=2    changed=1    unreachable=0    failed=0    skipped=0    rescued=0    ignored=0
 
 
  
 
== Related terms ==
 
== Related terms ==

Revision as of 07:51, 5 April 2021

#!/usr/bin/env ansible-playbook

- hosts: localhost
  become: yes

  tasks:
    - package:
          name: sysstat
          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


See also

Advertising: