Perché il mio LaunchDaemon non verrà avviato?

0

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

    
posta nipponese 23.01.2016 - 06:08
fonte

1 risposta

2

Hai commesso diversi errori:

  • È è in esecuzione se hai avviato correttamente plist con launchctl, ma è difettoso
  • Non hai definito una directory di lavoro per ls
  • Manca uno stdout corretto
  • Manca un file di errore standard (di solito è facile rilevare cosa c'è che non va nel tuo agente
  • Inseriscilo in LaunchAgents invece di LaunchDaemon: ls è no daemon

Ecco un plist lavorativo:

<?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>EnableGlobbing</key>
    <true/>
    <key>KeepAlive</key>
    <true/>
    <key>Label</key>
    <string>com.noah.supertest</string>
    <key>ProgramArguments</key>
    <array>
        <string>ls</string>
        <string>-laO</string>
        <string>/private/tmp</string>
    </array>
    <key>RunAtLoad</key>
    <true/>
    <key>StandardErrorPath</key>
    <string>/tmp/com.noah.supertest.stderr</string>
    <key>StandardOutPath</key>
    <string>/Users/user_name/test.txt</string>
    <key>StartInterval</key>
    <integer>10</integer>
</dict>
</plist>

Devi prima creare il file ~ / test.txt prima di eseguire l'agente di lancio.

Quindi avvia l'agente di lancio con sudo launchctl [subcommand [arguments ...]] e verifica il risultato:

...
drwxrwxrwt  8 root      wheel  -       272 Jan 23 12:23 .
drwxr-xr-x@ 6 root      wheel  hidden  204 Apr  9  2015 ..
-rw-r--r--@ 1 username  wheel  -      6148 Jan 23 12:21 .DS_Store
drwx------  3 root      wheel  -       102 Jan 23 12:07 KSOutOfProcessFetcher.0.sAglCyxY5lzPoNgfmEvv-ZqGl-w=
drwx------  3 username  wheel  -       102 Jan 23 12:05 com.apple.launchd.XFA6PYyYos
drwx------  3 username  wheel  -       102 Jan 23 12:05 com.apple.launchd.pHTdYNvPM9
-rw-r--r--  1 username  wheel  -      1867 Jan 23 12:21 com.noah.supertest.stderr
-rw-r--r--  1 username  wheel  -         0 Jan 23 12:16 com.soma-zone.LaunchControl.dumpstate
total 24
drwxrwxrwt  8 root      wheel  -       272 Jan 23 12:23 .
drwxr-xr-x@ 6 root      wheel  hidden  204 Apr  9  2015 ..
-rw-r--r--@ 1 username  wheel  -      6148 Jan 23 12:21 .DS_Store
drwx------  3 root      wheel  -       102 Jan 23 12:07 KSOutOfProcessFetcher.0.sAglCyxY5lzPoNgfmEvv-ZqGl-w=
drwx------  3 username  wheel  -       102 Jan 23 12:05 com.apple.launchd.XFA6PYyYos
drwx------  3 username  wheel  -       102 Jan 23 12:05 com.apple.launchd.pHTdYNvPM9
-rw-r--r--  1 username  wheel  -      1867 Jan 23 12:21 com.noah.supertest.stderr
-rw-r--r--  1 username  wheel  -         0 Jan 23 12:16 com.soma-zone.LaunchControl.dumpstate
total 24
drwxrwxrwt  8 root      wheel  -       272 Jan 23 12:23 .
drwxr-xr-x@ 6 root      wheel  hidden  204 Apr  9  2015 ..
-rw-r--r--@ 1 username  wheel  -      6148 Jan 23 12:21 .DS_Store
drwx------  3 root      wheel  -       102 Jan 23 12:07 KSOutOfProcessFetcher.0.sAglCyxY5lzPoNgfmEvv-ZqGl-w=
drwx------  3 username  wheel  -       102 Jan 23 12:05 com.apple.launchd.XFA6PYyYos
drwx------  3 username  wheel  -       102 Jan 23 12:05 com.apple.launchd.pHTdYNvPM9
-rw-r--r--  1 username  wheel  -      1867 Jan 23 12:21 com.noah.supertest.stderr
-rw-r--r--  1 username  wheel  -         0 Jan 23 12:16 com.soma-zone.LaunchControl.dumpstate
...
    
risposta data 23.01.2016 - 12:34
fonte

Leggi altre domande sui tag