Ho uno script monta.sh
per montare un volume esterno:
#!bin/sh
mkdir -p /Volumes/remvol
mount_smbfs //user:password@server/folder /Volumes/remvol
Quindi ho un com.jo.monta.plist
per avviare lo script dopo l'avvio del sistema inserito in /Library/LaunchDaemons
:
<?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>com.jo.monta</string>
<key>Disabled</key>
<false/>
<key>UserName</key>
<string>admin</string>
<key>ProgramArguments</key>
<array>
<string>/Users/admin/scripts/monta.sh</string>
</array>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Ho testato lo script dalla riga di comando e funziona, tuttavia se accedo dopo l'avvio il volume non è montato.
Sembra che il file Plist non venga caricato? cosa c'è che non va?