Add installer build scripts and configuration

This commit is contained in:
Reinier Criel 2025-11-25 08:21:35 -08:00
parent fb3a8582a2
commit 3420290ea9
22 changed files with 1377 additions and 7 deletions

View file

@ -0,0 +1,12 @@
#!/bin/bash
set -e
LAUNCHD_PLIST="/Library/LaunchDaemons/dev.aikido.safe-chain.plist"
# Stop existing agent if running
if [ -f "$LAUNCHD_PLIST" ]; then
echo "Stopping existing Aikido Safe Chain Agent..."
launchctl unload "$LAUNCHD_PLIST" 2>/dev/null || true
fi
exit 0