We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d10c460 commit 686f0fbCopy full SHA for 686f0fb
snapcraft/hooks/remove
@@ -17,4 +17,12 @@ done
17
# Stop workaround unit
18
nsenter -t 1 -m systemctl stop snap.lxd.workaround >/dev/null 2>&1 || true
19
20
+# Remove systemd override snippet
21
+SYSTEMD_OVERRIDE_DIR="/run/systemd/system/snap.lxd.daemon.service.d"
22
+if [ -e "${SYSTEMD_OVERRIDE_DIR}/lxd-shutdown.conf" ]; then
23
+ rm "${SYSTEMD_OVERRIDE_DIR}/lxd-shutdown.conf" || true
24
+ rmdir --ignore-fail-on-non-empty "${SYSTEMD_OVERRIDE_DIR}"
25
+ nsenter -t 1 -m systemctl daemon-reload || true
26
+fi
27
+
28
exit 0
0 commit comments