mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
10 lines
257 B
Bash
Executable File
10 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if /bin/launchctl list "org.urbackup.client.backend" &> /dev/null; then
|
|
/bin/launchctl stop "org.urbackup.client.backend"
|
|
/bin/launchctl unload "/Library/LaunchDaemons/org.urbackup.client.plist"
|
|
fi
|
|
|
|
killall urbackupclientgui || true |