Disable also swapfiles in /var/lib/lxd (in setups where lxd ain't installed using snap)

This commit is contained in:
Alexandre Aubin 2021-02-03 01:31:57 +01:00
parent 5270cd2c6b
commit 7a0abea251

View file

@ -102,6 +102,7 @@ LXC_STOP () {
LXC_RESET () {
timeout 30 lxc stop --timeout 15 $LXC_NAME --force 2>/dev/null
swapoff /var/snap/lxd/common/lxd/containers/$LXC_NAME/rootfs/swap_* 2>/dev/null
swapoff /var/lib/lxd/containers/$LXC_NAME/rootfs/swap_* 2>/dev/null
lxc delete $LXC_NAME --force 2>/dev/null
}