initial commit

This commit is contained in:
Robert Kaussow 2018-11-15 19:47:38 +01:00
parent b112ab5646
commit 009cc9e5cd
2 changed files with 16 additions and 0 deletions

14
tasks/install.yml Normal file
View File

@ -0,0 +1,14 @@
---
- block:
- name: Install haveged entrophy daemon
package:
name: haveged
state: installed
- name: Enable and start service
service:
name: haveged
state: started
enabled: yes
become: True
become_user: root

2
tasks/main.yml Normal file
View File

@ -0,0 +1,2 @@
---
- import_tasks: install.yml