-
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unixPB: Install rng-tools to fix low entropy (#3145)
- Loading branch information
Showing
5 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,3 +141,4 @@ | |
- role: logs | ||
position: "End" | ||
tags: always | ||
- rngd |
19 changes: 19 additions & 0 deletions
19
ansible/playbooks/AdoptOpenJDK_Unix_Playbook/roles/rngd/tasks/fedora.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
- name: Install the rng-tools package (Fedora) | ||
package: | ||
name: rng-tools | ||
state: latest | ||
|
||
- name: Update the rngd.service file (Fedora) | ||
ini_file: | ||
path: /usr/lib/systemd/system/rngd.service | ||
section: service | ||
option: ExecStart | ||
value: "/sbin/rngd -f -r /dev/urandom -o /dev/random" | ||
backup: yes | ||
|
||
- name: Start and enable "rngd" service (Fedora) | ||
service: | ||
name: rngd | ||
state: started | ||
enabled: yes |
22 changes: 22 additions & 0 deletions
22
ansible/playbooks/AdoptOpenJDK_Unix_Playbook/roles/rngd/tasks/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
################ | ||
# rng daemon # | ||
################ | ||
- name: Install rng-tools and start service | ||
tags: rngd | ||
block: | ||
- name: Install rng-tools and start rng-tools.service (Ubuntu) | ||
include_tasks: ubuntu.yml | ||
when: | ||
- ansible_distribution == "Ubuntu" and ansible_distribution_major_version < "21" | ||
|
||
- name: Install rng-tools and start rngd (Fedora) | ||
include_tasks: fedora.yml | ||
when: | ||
- (ansible_distribution == "RedHat" and ansible_distribution_major_version <= "8") or | ||
(ansible_distribution == "CentOS" and ansible_distribution_major_version <= "8") | ||
|
||
- name: Install rng-tools and start rng-tools.service (SLES) | ||
include_tasks: sles.yml | ||
when: | ||
- ansible_distribution == "SLES" and ansible_distribution_major_version <= "12" |
19 changes: 19 additions & 0 deletions
19
ansible/playbooks/AdoptOpenJDK_Unix_Playbook/roles/rngd/tasks/sles.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
- name: Install the rng-tools package (SLES) | ||
package: | ||
name: rng-tools | ||
state: latest | ||
|
||
- name: Update the rng-tools.service file (SLES) | ||
ini_file: | ||
path: /usr/lib/systemd/system/rng-tools.service | ||
section: service | ||
option: ExecStart | ||
value: "usr/sbin/rngd -f -r /dev/urandom -o /dev/random" | ||
backup: yes | ||
|
||
- name: Start and enable "rng-tools" service (SLES) | ||
service: | ||
name: rng-tools | ||
state: started | ||
enabled: yes |
19 changes: 19 additions & 0 deletions
19
ansible/playbooks/AdoptOpenJDK_Unix_Playbook/roles/rngd/tasks/ubuntu.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
- name: Install the rng-tools package (Ubuntu) | ||
package: | ||
name: rng-tools | ||
state: latest | ||
|
||
- name: Update the rng-tools defaults file (Ubuntu) | ||
lineinfile: | ||
dest: '/etc/default/rng-tools' | ||
regexp: '^HRNGDEVICE=/dev/urandom' | ||
mode: '0644' | ||
insertafter: '^#HRNGDEVICE=/dev/null' | ||
line: 'HRNGDEVICE=/dev/urandom' | ||
|
||
- name: Start and enable "rngd" service (Ubuntu) | ||
systemd: | ||
name: rng-tools.service | ||
state: started | ||
enabled: yes |