Ce script vous sera utile dans le cadre de sa désinstallation sous Mac OS X.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
SystemStarter stop 'Firebird Server'
dscl localhost -delete /Local/Default/Users/firebird
dscl localhost -delete /Local/Default/Groups/firebird
if [ -f "/Library/StartupItems/Firebird" ]; then
rm -fr /Library/StartupItems/Firebird
fi
if [ -f "/Library/LaunchDaemons/org.firebird.gds.plist" ]; then
launchctl unload /Library/LaunchDaemons/org.firebird.gds.plist
rm /Library/LaunchDaemons/org.firebird.gds.plist
fi
rm -fr /Library/Frameworks/Firebird.framework
rm -fr /Library/Receipts/Firebird*.pkg
|