update uninstaller
This commit is contained in:
parent
9a6c3d36f9
commit
a673e05087
|
@ -196,11 +196,11 @@ chmod a+x $TELEBIT_PATH/bin/$my_app
|
||||||
# Create uninstall script based on the install script variables
|
# Create uninstall script based on the install script variables
|
||||||
cat << EOF > $TELEBIT_PATH/bin/${my_app}_uninstall
|
cat << EOF > $TELEBIT_PATH/bin/${my_app}_uninstall
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
if [ type -p launchctl ]; then
|
if [ "$(type -p launchctl)" ]; then
|
||||||
sudo launchctl unload -w /Library/LaunchDaemons/${my_app_pkg_name}.plist
|
sudo launchctl unload -w /Library/LaunchDaemons/${my_app_pkg_name}.plist
|
||||||
sudo rm -rf /Library/LaunchDaemons/cloud.telebit.remote.plist
|
sudo rm -rf /Library/LaunchDaemons/cloud.telebit.remote.plist
|
||||||
fi
|
fi
|
||||||
if [ type -p systemctl ]; then
|
if [ "$(type -p systemctl)" ]; then
|
||||||
sudo systemctl disable telebit; sudo systemctl stop telebit
|
sudo systemctl disable telebit; sudo systemctl stop telebit
|
||||||
sudo rm -rf /etc/systemd/system/$my_app.service
|
sudo rm -rf /etc/systemd/system/$my_app.service
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue