Skip to content

Commit 686f0fb

Browse files
committed
remove: remove lxd-shutdown.conf systemd override
Signed-off-by: Simon Deziel <[email protected]>
1 parent d10c460 commit 686f0fb

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

snapcraft/hooks/remove

+8
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,12 @@ done
1717
# Stop workaround unit
1818
nsenter -t 1 -m systemctl stop snap.lxd.workaround >/dev/null 2>&1 || true
1919

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+
2028
exit 0

0 commit comments

Comments
 (0)