¿Por qué no se inicia LaunchDaemon?

0

Estoy intentando escribir mi primer LaunchDaemon: creo que es bastante simple y cumple con todos los requisitos, pero no se ejecutará.

El archivo está en /Library/LaunchDaemons/com.noah.supertest.plist

Idealmente, debería estar ejecutando ls y escribiendo la salida en ~/test.txt . Pero nunca se escribe nada en el archivo.

Reinicié la máquina pensando que podría hacerlo, pero nada.

<?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>

Los permisos se establecen como root: wheel

    
pregunta nipponese 23.01.2016 - 06:08

1 respuesta

2

Has cometido varios errores:

  • Se está ejecutando siempre que hayas iniciado la operación correctamente con launchctl, pero está defectuoso
  • No definió un directorio de trabajo para ls
  • Te estás perdiendo un stdout adecuado
  • Le falta un archivo de error estándar (por lo general, es fácil detectar qué es lo que está mal con su agente
  • Póngalo en LaunchAgents en lugar de LaunchDaemons: ls es no daemon

Aquí hay una lista de trabajo:

<?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>

Debe crear el archivo ~ / test.txt primero antes de ejecutar el agente de inicio.

Luego inicie el agente de inicio con sudo launchctl [subcommand [arguments ...]] y verifique el resultado:

...
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
...
    
respondido por el klanomath 23.01.2016 - 12:34

Lea otras preguntas en las etiquetas