diff --git a/roles/httpd/mod_ssl/tasks/main.yml b/roles/httpd/mod_ssl/tasks/main.yml index 5991927440..5bbd8948c3 100644 --- a/roles/httpd/mod_ssl/tasks/main.yml +++ b/roles/httpd/mod_ssl/tasks/main.yml @@ -18,3 +18,16 @@ tags: - httpd - httpd/certificate + +- name: Install haveged for entropy + yum: name=haveged state=installed + tags: + - httpd + - httpd/proxy + +- name: Set haveged running/enabled + service: name=haveged enabled=yes + tags: + - service + - httpd + - httpd/proxy diff --git a/roles/httpd/proxy/tasks/main.yml b/roles/httpd/proxy/tasks/main.yml index 667fc531ef..ff45c2a5d9 100644 --- a/roles/httpd/proxy/tasks/main.yml +++ b/roles/httpd/proxy/tasks/main.yml @@ -47,16 +47,3 @@ - httpd - httpd/proxy - selinux - -- name: Install haveged for entropy - yum: name=haveged state=installed - tags: - - httpd - - httpd/proxy - -- name: Set haveged running/enabled - service: name=haveged enabled=yes - tags: - - service - - httpd - - httpd/proxy