f62eb125cf
- added a -host_trig command line option that creates a new host instance without blocking user input. - the build/install python scripts will no longer internally build platform specific shell scripts; instead, they will now copy the necessary templates from the /templates folder. - modified both build.py and install.py to include windows deployment support so this app can now be built/installed on windows based host. note: i decided to have it "daemonized" as a scheduled task that runs on system start instead of service because it is simply easier to do it this way and will not involve any 3rd party libraries or apps. - added the src/applink.c file to the source code since it is needed for windows openssl support. - changed over all references of "endl" to "Qt::endl" to avoid depreciation errors/warnings.
8 lines
216 B
Bash
8 lines
216 B
Bash
#!/bin/sh
|
|
systemctl -q stop $app_target
|
|
systemctl -q disable $app_target
|
|
rm -v /etc/systemd/system/$app_target.service
|
|
rm -v /usr/bin/$app_target
|
|
rm -rv $install_dir
|
|
deluser $app_target
|
|
echo "Uninstallation Complete" |