daad0dffa2
-re-added recordloop as a thread within the app. -the app no longer use mutiple services and will instead fully operate in a single master service. -build/install.py will now install the app as a single service. -added/updated -s, -r and -q options to manage the single master service.
10 lines
241 B
Bash
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"
|