This commit is contained in:
parent
332e12c711
commit
e28b32ef3c
2 changed files with 8 additions and 2 deletions
|
|
@ -5,6 +5,9 @@
|
||||||
- config
|
- config
|
||||||
|
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
package: name='{{ ansible_packages }}' state=latest update_cache=yes
|
package:
|
||||||
|
name: '{{ ansible_packages }}'
|
||||||
|
state: present
|
||||||
|
update_cache: yes
|
||||||
tags:
|
tags:
|
||||||
- installation
|
- installation
|
||||||
|
|
|
||||||
|
|
@ -24,4 +24,7 @@
|
||||||
- ansible_distribution == "Debian"
|
- ansible_distribution == "Debian"
|
||||||
|
|
||||||
- name: Remove Ansible's packages
|
- name: Remove Ansible's packages
|
||||||
package: name='{{ ansible_packages }}' state=absent update_cache=yes
|
package:
|
||||||
|
name: '{{ ansible_packages }}'
|
||||||
|
state: absent
|
||||||
|
update_cache: yes
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue