- command = ["killall", pid]
- tools.helpers.run.root(args, command, check=False)
+ 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"])