summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks
diff options
context:
space:
mode:
Diffstat (limited to 'roles/common/tasks')
-rw-r--r--roles/common/tasks/smart.yml1
1 files changed, 0 insertions, 1 deletions
diff --git a/roles/common/tasks/smart.yml b/roles/common/tasks/smart.yml
index b24b302..8d35d9f 100644
--- a/roles/common/tasks/smart.yml
+++ b/roles/common/tasks/smart.yml
@@ -1,13 +1,12 @@
- name: Install smartmontools
- # XXX apt-listbugs complains due to #706909.
apt: pkg=smartmontools
- name: Auto-enable smartmontools
lineinfile: dest=/etc/default/smartmontools
regexp='^(\s*#)?\s*start_smartd='
line='start_smartd=yes'
owner=root group=root
mode=0644
- name: Start smartd
service: name=smartmontools state=started