summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2017-06-21 15:42:48 +0200
committerGuilhem Moulin <guilhem@fripost.org>2017-06-26 13:01:25 +0200
commitd0294df197362ee61a65f0b5931b4e760c1efc2c (patch)
tree9b5797065c90d6b4e1607540368ff6eb2a893221 /roles/common/tasks
parent964d5a81ebd010c6f2c42b9c106e1a9652804b30 (diff)
Don't install debsecan anymore by default.
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789196
Diffstat (limited to 'roles/common/tasks')
-rw-r--r--roles/common/tasks/apt.yml7
1 files changed, 0 insertions, 7 deletions
diff --git a/roles/common/tasks/apt.yml b/roles/common/tasks/apt.yml
index f444315..2f5a62a 100644
--- a/roles/common/tasks/apt.yml
+++ b/roles/common/tasks/apt.yml
@@ -1,49 +1,42 @@
- name: Install various APT tools
apt: pkg={{ item }}
with_items:
- apt
- apt-listchanges
- apt-show-versions
- debian-archive-keyring
- debian-goodies
- needrestart
- unattended-upgrades
- debfoster
- deborphan
- - debsecan
- debsums
- name: Configure APT (1)
template: src=etc/apt/{{ item }}.j2
dest=/etc/apt/{{ item }}
owner=root group=root
mode=0644
with_items:
- sources.list
- preferences
notify:
- apt-get update
- name: Configure APT (2)
copy: src=etc/apt/{{ item }}
dest=/etc/apt/{{ item }}
owner=root group=root
mode=0644
with_items:
- listchanges.conf
- apt.conf.d/10periodic
- apt.conf.d/50unattended-upgrades
-- name: Configure the Debian Security Analyzer
- template: src=etc/default/debsecan.j2
- dest=/etc/default/debsecan
- owner=root group=root
- mode=0644
-
- name: Start cron
service: name=cron state=started
tags:
- cron
# We should run 'apt-get update' before proceeding to any other task.
- meta: flush_handlers