mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-12 03:12:22 +01:00
16 lines
591 B
Diff
16 lines
591 B
Diff
--- ./src/lxc/lxc-destroy.in.orig 2013-04-15 07:38:58.383545701 +0000
|
|
+++ ./src/lxc/lxc-destroy.in 2013-04-15 07:42:22.552123148 +0000
|
|
@@ -137,10 +137,10 @@
|
|
btrfs subvolume delete "$rootdev"
|
|
else
|
|
# In case rootfs is not under $lxc_path/$lxc_name, remove it
|
|
- rm -rf --one-file-system --preserve-root $rootdev
|
|
+ find $rootdev -xdev -delete
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
# recursively remove the container to remove old container configuration
|
|
-rm -rf --one-file-system --preserve-root $lxc_path/$lxc_name
|
|
+find $lxc_path/$lxc_name -xdev -delete
|