Devi guardare launchd
che utilizza i file di installazione * .plist in:
/Library/LaunchAgents/
, /Library/LaunchDaemons/
e ~/Library/LaunchAgents/
Sotto /System/Library/LaunchAgents/
e /System/Library/LaunchDaemons/
sono quelli forniti da Mac OS X.
Quando ad es. installa il modulo postgresql Macports, verrà anche installato un file org.macports.postgresql93-server.plist
in /Library/LaunchDaemons/
(è un collegamento a un file .plist che è installato sotto /opt/local/etc/LaunchDaemons/org.macports.postgresql93-server
) , ma il daemon non è t abilitato all'installazione.
Il contenuto di questo file .plist è (la chiave <key>Disabled</key><true/>
deve essere impostata su false, se è necessario abilitare il demone) :
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd" >
<plist version='1.0'>
<dict>
<key>Label</key><string>org.macports.postgresql93-server</string>
<key>ProgramArguments</key>
<array>
<string>/opt/local/bin/daemondo</string>
<string>--label=postgresql93-server</string>
<string>--start-cmd</string>
<string>/opt/local/etc/LaunchDaemons/org.macports.postgresql93-server/postgresql93-server.wrapper</string>
<string>start</string>
<string>;</string>
<string>--stop-cmd</string>
<string>/opt/local/etc/LaunchDaemons/org.macports.postgresql93-server/postgresql93-server.wrapper</string>
<string>stop</string>
<string>;</string>
<string>--restart-cmd</string>
<string>/opt/local/etc/LaunchDaemons/org.macports.postgresql93-server/postgresql93-server.wrapper</string>
<string>restart</string>
<string>;</string>
<string>--pid=none</string>
</array>
<key>Debug</key><false/>
<key>Disabled</key><true/>
<key>KeepAlive</key><true/>
</dict>
</plist>