Update state from installed/removed to present/absent for yum module as per latest documents -> http://docs.ansible.com/yum_module.html
This commit is contained in:
parent
fa85764d3b
commit
4b1e5162d7
93 changed files with 120 additions and 120 deletions
|
@ -20,7 +20,7 @@
|
|||
- base
|
||||
|
||||
- name: global default packages to install
|
||||
yum: state=installed name={{ item }}
|
||||
yum: state=present name={{ item }}
|
||||
with_items:
|
||||
- "{{ global_pkgs_inst }}"
|
||||
tags:
|
||||
|
@ -71,7 +71,7 @@
|
|||
- base
|
||||
|
||||
- name: dist pkgs to remove
|
||||
yum: state=removed name={{ item }}
|
||||
yum: state=absent name={{ item }}
|
||||
with_items:
|
||||
- "{{ base_pkgs_erase }}"
|
||||
tags:
|
||||
|
@ -79,7 +79,7 @@
|
|||
- base
|
||||
|
||||
- name: dist pkgs to install
|
||||
yum: state=installed name={{ item }}
|
||||
yum: state=present name={{ item }}
|
||||
with_items:
|
||||
- "{{ base_pkgs_inst }}"
|
||||
tags:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue