Quellcode durchsuchen

add(apticron): configure email

Apticron is configured to send email to {{ admin_email }}
Bertrand Cachet vor 11 Jahren
Ursprung
Commit
373cb4584b
2 geänderte Dateien mit 9 neuen und 0 gelöschten Zeilen
  1. 3
    0
      roles/common/tasks/main.yml
  2. 6
    0
      roles/common/templates/apticron.conf.j2

+ 3
- 0
roles/common/tasks/main.yml Datei anzeigen

@@ -34,6 +34,9 @@
34 34
   notify:
35 35
     - restart ntp
36 36
 
37
+- name: Apticron email configuration
38
+  template: src=apticron.conf.j2 dest=/etc/apticron/apticron.conf
39
+
37 40
 - name: Ensure ntpd is running and enabled
38 41
   service: name=ntp state=started enabled=yes
39 42
 

+ 6
- 0
roles/common/templates/apticron.conf.j2 Datei anzeigen

@@ -0,0 +1,6 @@
1
+EMAIL="{{ admin_email }}"
2
+
3
+NOTIFY_NO_UPDATE="0"
4
+
5
+NOTIFY_NEW="0"
6
+

Laden…
Abbrechen
Speichern