mirror of
https://github.com/roles-ansible/ansible_role_base.git
synced 2024-08-16 14:29:50 +02:00
package should not use latest
This commit is contained in:
parent
aa164139cd
commit
2f66304699
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
||||||
become: yes
|
become: yes
|
||||||
package:
|
package:
|
||||||
name: keychain
|
name: keychain
|
||||||
state: latest
|
state: "{{ base__package_state }}"
|
||||||
when:
|
when:
|
||||||
- ansible_os_family != 'RedHat'
|
- ansible_os_family != 'RedHat'
|
||||||
- install_keychain|bool
|
- install_keychain|bool
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
name:
|
name:
|
||||||
- "{{ _base__keychain_rpm }}"
|
- "{{ _base__keychain_rpm }}"
|
||||||
- libselinux-python
|
- libselinux-python
|
||||||
state: present
|
state: "{{ base__package_state }}"
|
||||||
when:
|
when:
|
||||||
- ansible_os_family == 'RedHat'
|
- ansible_os_family == 'RedHat'
|
||||||
- install_keychain|bool
|
- install_keychain|bool
|
||||||
|
|
Loading…
Reference in a new issue