LaunchDaemon per pf non verrà caricato all'avvio

2

Ho un plist in /Library/LaunchDaemons/ che dovrebbe essere eseguito come root all'avvio.

Quando eseguo sudo launchctl load /Library/LaunchDaemons/com.apple.pfctl.plist , funziona. Tuttavia al riavvio non funziona.

È interessante notare che, dopo il riavvio, quando eseguo quel comando dice /Library/LaunchDaemons/com.apple.pfctl.plist: service already loaded ma non funziona. Tuttavia, se scarico e carico funziona normalmente.

Nulla viene visualizzato nel mio errore che riporta /tmp/pfctl.err .

Il mio plist è qui:

<?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.apple.pfctl</string>
<key>ProgramArguments</key>
        <array>
                <string>pfctl</string>
                <string>-e</string>
                <string>-f</string>
                <string>/etc/pf.conf</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
<key>StandardErrorPath</key>
<string>/tmp/pfctl.err</string>
<key>StandardOutPath</key>
<string>/tmp/pfctl.out</string>
</dict>
</plist>
    
posta jakethedog 29.10.2016 - 11:57
fonte

1 risposta

1

Il problema era che esiste un plist predefinito per pfctl a /System/Library/LaunchDaemons/com.apple.pfctl.plist . Erano in conflitto.

In questo plist ho impostato <key>Disabled</key> su <true/> , e tutto funziona come previsto.

    
risposta data 29.10.2016 - 15:13
fonte

Leggi altre domande sui tag