JustMotion/server/templates/linux_uninstall.sh
zii 7c72d26e46 v1.0
-initial commit
-basic functions tested working
2025-06-26 12:06:41 -04:00

10 lines
241 B
Bash

#!/bin/sh
systemctl stop $app_target
systemctl disable $app_target
rm -v /lib/systemd/system/$app_target.service
rm -v /usr/bin/$app_target
rm -rv /tmp/$app_target-stats
rm -rv $install_dir
deluser $app_target
echo "Uninstallation Complete"