Ho installato cntlm su osx usando la formula homebrew .
Quindi ho copiato il file .plist e avviato il demone:
sudo cp -fv /usr/local/opt/cntlm/*.plist /Library/LaunchDaemons
sudo chown root /Library/LaunchDaemons/homebrew.mxcl.cntlm.plist
Ma dopo il riavvio il daemon non è in esecuzione. Ho provato ad eseguirlo manualmente con
sudo launchctl load /Library/LaunchDaemons/homebrew.mxcl.cntlm.plist
ma il suo output è
/Library/LaunchDaemons/homebrew.mxcl.cntlm.plist: Operation already in progress
Ho anche controllato il file plist con plutil -lint
ed è ok.
Questa è la fonte di /Library/LaunchDaemons/homebrew.mxcl.cntlm.plist
:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>homebrew.mxcl.cntlm</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/opt/cntlm/bin/cntlm</string>
</array>
<key>KeepAlive</key>
<false/>
<key>RunAtLoad</key>
<true/>
<key>StandardOutPath</key>
<string>/var/null</string>
<key>StandardErrorPath</key>
<string>/var/null</string>
</dict>
</plist>
Sai perché questo accade e come eseguirlo correttamente come demone?