17
0
Fork 0

on utilise le module openbsd_pkg

This commit is contained in:
Daniel Jakots 2017-03-16 16:24:57 -04:00
parent 436f9fda05
commit d877b95ad7
1 changed files with 11 additions and 0 deletions

View File

@ -246,6 +246,17 @@ Voici quelques exemples de modules que nous utilisons :
state: restarted
~~~
* Module [openbsd_pkg](http://docs.ansible.com/ansible/openbsd_pkg_module.html) :
~~~{.yaml}
- openbsd_pkg:
name: "{{ item }}"
state: present
with_items:
- wget
- vim--no_x11
~~~
Pour avoir plus d'infos sur un module :
~~~