Ipsilon requires lots of entropy, add haveged

Signed-off-by: Patrick Uiterwijk <puiterwijk@redhat.com>
This commit is contained in:
Patrick Uiterwijk 2016-05-05 23:11:44 +00:00
parent e8bc1d4d12
commit 3cb1cb2f14

View file

@ -68,6 +68,24 @@
- jenkins/slave
- config
# Haveged is not needed per se, but very useful for builds that require lots of entropy
# Hello, Ipsilon
- name: install haveged
dnf: name=haveged state=installed
when: is_fedora is defined and ansible_distribution_major_version|int > 21
tags:
- jenkins
- jenkins/slave
- packages
- name: enable haveged service to start on boot
service: name=haveged state=running enabled=true
when: is_fedora is defined and ansible_distribution_major_version|int > 21
tags:
- jenkins
- jenkins/slave
- service
- name: create workspace directory
file: state=directory path=/srv/jenkins owner=jenkins group=jenkins
tags: