Remove obsolete .reload-module-on-update file

It does not serve any function anymore after support for module
reloading has been removed from the postinst script in 0.0.20200215-2 on
2020-02-24. A module update is properly signaled via
/run/reboot-required so that the admin can (automatically) schedule a
reboot when convenient. This will also be more in line with future Debian
releases because starting with Debian bullseye, the kernel ships the
module.
master
Robin Schneider 4 years ago
parent e7588cd047
commit 8b1ae7d4c2
No known key found for this signature in database
GPG Key ID: A81E8006DC95EFE6

@ -114,18 +114,10 @@
notify: notify:
- reconfigure wireguard - reconfigure wireguard
- name: Check if reload-module-on-update is set - name: Ensure legacy reload-module-on-update is absent
stat:
path: "{{ wireguard_remote_directory }}/.reload-module-on-update"
register: reload_module_on_update
tags:
- wg-config
- name: Set WireGuard reload-module-on-update
file: file:
dest: "{{ wireguard_remote_directory }}/.reload-module-on-update" dest: "{{ wireguard_remote_directory }}/.reload-module-on-update"
state: touch state: absent
when: not reload_module_on_update.stat.exists
tags: tags:
- wg-config - wg-config

Loading…
Cancel
Save