add missing epel test dependency
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
b18c582435
commit
ff269f7853
2
defaults/main.yml
Normal file
2
defaults/main.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
haveged_packages_extra: []
|
@ -1,5 +1,9 @@
|
|||||||
---
|
---
|
||||||
- name: Converge
|
- name: Converge
|
||||||
hosts: all
|
hosts: all
|
||||||
|
vars:
|
||||||
|
haveged_packages_extra:
|
||||||
|
- epel-release
|
||||||
|
|
||||||
roles:
|
roles:
|
||||||
- role: xoxys.haveged
|
- role: xoxys.haveged
|
||||||
|
@ -2,8 +2,9 @@
|
|||||||
- block:
|
- block:
|
||||||
- name: Install haveged entrophy daemon
|
- name: Install haveged entrophy daemon
|
||||||
package:
|
package:
|
||||||
name: haveged
|
name: "{{ item }}"
|
||||||
state: present
|
state: present
|
||||||
|
loop: "{{ haveged_packages_extra + __haveged_packages }}"
|
||||||
|
|
||||||
- name: Enable and start service
|
- name: Enable and start service
|
||||||
service:
|
service:
|
||||||
|
3
vars/main.yml
Normal file
3
vars/main.yml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
__haveged_packages:
|
||||||
|
- haveged
|
Loading…
Reference in New Issue
Block a user