configure needrestart to restart when unattended
authorRalf Jung <post@ralfj.de>
Sat, 20 Jul 2019 12:18:55 +0000 (14:18 +0200)
committerRalf Jung <post@ralfj.de>
Sat, 20 Jul 2019 12:18:55 +0000 (14:18 +0200)
roles/base/files/needrestart.conf [new file with mode: 0644]
roles/base/tasks/main.yml

diff --git a/roles/base/files/needrestart.conf b/roles/base/files/needrestart.conf
new file mode 100644 (file)
index 0000000..b2e1f1a
--- /dev/null
@@ -0,0 +1,2 @@
+# Restart when unattended
+$nrconf{restart} = 'a'
index 0757dc7c6c6e5278fdce77e4666968dc336c961c..9112430dcd2fa98b7db3b8f8ad95c366404094c9 100644 (file)
@@ -13,9 +13,7 @@
 - name: get rid of packages we do not want
   apt: name=exim4-base,rpcbind,procmail,fetchmail state=absent autoremove=yes
 - name: install some basic tools
 - name: get rid of packages we do not want
   apt: name=exim4-base,rpcbind,procmail,fetchmail state=absent autoremove=yes
 - name: install some basic tools
-  apt: name=nano,aptitude,rsync,git,mercurial,curl,apt-transport-https,psmisc,dnsutils,tree,htop,acl,libpam-systemd state=latest
-- name: install needrestart (from backports)
-  apt: name=needrestart state=latest default_release={{ansible_distribution_release}}-backports
+  apt: name=nano,aptitude,rsync,git,mercurial,curl,apt-transport-https,psmisc,dnsutils,tree,htop,acl,libpam-systemd,needrestart state=latest
 # configuration
 - name: configure root shell
   copy:
 # configuration
 - name: configure root shell
   copy:
@@ -31,3 +29,7 @@
     dest: /etc/systemd/timesyncd.conf
     src: files/timesyncd.conf
   notify: timesyncd
     dest: /etc/systemd/timesyncd.conf
     src: files/timesyncd.conf
   notify: timesyncd
+- name: configure needrestart
+  copy:
+    dest: /etc/needrestart/conf.d/restart.conf
+    src: files/needrestart.conf