X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/waydroid.git/blobdiff_plain/ddcc296d8ea86d1f891678a8a16e77a45026abf8..b87fa012997eedd57efdd5a658bc3848a5379e9d:/tools/actions/container_manager.py diff --git a/tools/actions/container_manager.py b/tools/actions/container_manager.py index b527c73..24e410b 100644 --- a/tools/actions/container_manager.py +++ b/tools/actions/container_manager.py @@ -208,6 +208,12 @@ def stop(args): command = ["kill", "-9", pid] tools.helpers.run.user(args, command, check=False) + # Umount rootfs + helpers.images.umount_rootfs(args) + + # Umount data + helpers.mount.umount_all(args, tools.config.defaults["data"]) + else: logging.error("WayDroid container is {}".format(status))