Skip to content

Commit

Permalink
base: Only install haveged on physical machines
Browse files Browse the repository at this point in the history
Doing otherwise would conflict with vm/guest.

Installing it only in vm/host is insufficient: we have physical machines that
aren't used as hypervisors, such as wuerfel.
  • Loading branch information
nbraud committed Feb 6, 2020
1 parent ee20acc commit a61ab6b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ansible/roles/base/tasks/02debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
- tcpdump
- debian-goodies
- lsof
- haveged
- net-tools
- screen
- aptitude
Expand All @@ -30,6 +29,12 @@
- lshw
state: present

- name: Install haveged on physical machines
when: 'virtualservers' not in group_names
apt:
name: haveged
state: present

- name: make sure grml-(etc|scripts)-core is not installed
apt:
name:
Expand Down

0 comments on commit a61ab6b

Please sign in to comment.