mirror of
https://github.com/ntop/ntopng.git
synced 2026-08-16 03:43:21 +00:00
12 lines
248 B
Bash
Executable file
12 lines
248 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# preinstall: stop ntopng before installing/upgrading
|
|
#
|
|
|
|
PLIST="/Library/LaunchDaemons/org.ntop.ntopng.plist"
|
|
|
|
if launchctl list | grep -q "org.ntop.ntopng" 2>/dev/null; then
|
|
launchctl unload "$PLIST" 2>/dev/null || true
|
|
fi
|
|
|
|
exit 0
|