Perché non launchctl carica automaticamente le mie voci plist?

1

Ho inserito diverse voci plist in / Library / LaunchDaemons tutte configurate per essere eseguite al caricamento. Tuttavia, dopo l'avvio, nessuno di essi viene caricato automaticamente. Ogni altro script in questa directory viene caricato automaticamente. La mia unica soluzione è usare un'app chiamata LaunchControl per caricarli manualmente, il che funziona bene. Ecco il testo di uno di questi script

 <?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>Disabled</key>
        <false/>
        <key>GroupName</key>
        <string>wheel</string>
        <key>InitGroups</key>
        <true/>
        <key>Label</key>
        <string>com.usseinstein.dns</string>
        <key>ProgramArguments</key>
        <array>
                <string>/usr/local/sbin/dnsmasq</string>
                <string>--keep-in-foreground</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StandardErrorPath</key>
        <string>/tmp/com.local.dns.stderr</string>
        <key>StandardOutPath</key>
        <string>/tmp/com.local.dns.stdout</string>
        <key>UserName</key>
        <string>root</string>
</dict>
</plist>
    
posta mauricev 18.04.2018 - 22:01
fonte

1 risposta

1

Assicurati che il tuo plist in / Library / LaunchDaemons / disponga delle autorizzazioni appropriate, che è root: wheel altrimenti il sistema non le elaborerà. Per impostarli usa il seguente comando Terminale:

sudo chown root:wheel /Library/LaunchDaemons/com.apple.something.plist
    
risposta data 24.04.2018 - 18:46
fonte

Leggi altre domande sui tag