Only stop apps and addons on data migration

This commit is contained in:
Johannes Zellner
2017-04-04 14:04:13 +02:00
parent 39ff21bdf4
commit da857f520b
+2 -3
View File
@@ -104,11 +104,10 @@ mkdir -p "${BOX_DATA_DIR}/acme" # acme keys
echo "==> Check for old btrfs volumes"
if df "${OLD_DATA_DIR}"; then
echo "==> Cleanup btrfs volumes"
# First stop docker and thus the apps to be able to unmount
systemctl stop docker
# First stop all container to be able to unmount
docker ps -q | xargs docker stop
umount "${OLD_DATA_DIR}"
rm -rf "/root/user_data.img"
systemctl start docker
else
echo "==> No btrfs volumes found";
fi