Files
duplicati/ReleaseBuilder/Resources/MacOS/Agent/daemon-scripts/preinstall
T

9 lines
337 B
Bash
Raw Normal View History

#!/bin/bash
2024-12-13 09:55:25 +01:00
# Identify the user installing the package
USER=$(stat -f%Su /dev/console)
if [ -f "/Library/LaunchAgents/com.duplicati.agent.launchagent.plist" ]; then
/bin/launchctl bootout gui/$(id -u "$USER")/com.duplicati.agent.launchagent
/bin/launchctl unload "/Library/LaunchAgents/com.duplicati.agent.launchagent.plist"
fi