mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
10 lines
284 B
Bash
10 lines
284 B
Bash
#!/bin/sh
|
|
|
|
# MariaDB installer support, preinstall script
|
|
# runs as root just after user clicks "Install"
|
|
|
|
# if daemon loaded, unload
|
|
if /bin/launchctl list "org.macports.@SUBPORT@" &> /dev/null; then
|
|
/bin/launchctl unload "/Library/LaunchDaemons/org.macports.@SUBPORT@.plist"
|
|
fi
|