diff options
author | Christoph Kluenter <ckluente@thoughtworks.com> | 2015-01-26 17:44:19 +0100 |
---|---|---|
committer | Christoph Kluenter <ckluente@thoughtworks.com> | 2015-01-26 17:45:33 +0100 |
commit | a46c255006d45ea7b606f94452bff54831f09d8d (patch) | |
tree | fa33e1e6723c9ee22955e2703aa9d93b276a3efd /provisioning/modules | |
parent | 309656aa7aa36394ef8390a0fae094be933b5262 (diff) |
install haveged to have more entropy
the internet hasn't decided if its a good idea to use
haveged on a virtual machine. But since this is for testing
purposes anyway, its okay.
First part of #244
Diffstat (limited to 'provisioning/modules')
-rw-r--r-- | provisioning/modules/pixelated/manifests/common.pp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/provisioning/modules/pixelated/manifests/common.pp b/provisioning/modules/pixelated/manifests/common.pp index b7a7726a..99382f1f 100644 --- a/provisioning/modules/pixelated/manifests/common.pp +++ b/provisioning/modules/pixelated/manifests/common.pp @@ -1,3 +1,6 @@ # applied to both vagrant boxed class pixelated::common { + package{'haveged': + ensure => installed, + } } |