Sto tentando di scrivere il mio primo LaunchDaemon: penso che sia piuttosto semplice e soddisfi tutti i requisiti, ma non verrà eseguito.
Il file è a /Library/LaunchDaemons/com.noah.supertest.plist
Idealmente, dovrebbe essere in esecuzione ls
e scrivere l'output su ~/test.txt
. Ma nulla è mai stato scritto sul file.
Ho riavviato la macchina pensando che potrebbe farlo, ma niente.
<?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.noah.supertest</string>
<key>ProgramArguments</key>
<array>
<string>ls</string>
<string>></string>
<string>~/test.txt</string>
</array>
<key>KeepAlive</key>
<true/>
<key>StartInterval</key>
<integer>10</integer>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Le autorizzazioni sono impostate come root: wheel