Necesito dnsmasq para que se ejecute en el arranque en Mavericks. Tengo dnsmasq trabajando muy bien. He creado un .plist archivo en /Library/LaunchDaemons con el siguiente contenido:
<?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>uk.org.thekelleys.dnsmasq</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/sbin/dnsmasq</string>
<string>--keep-in-foreground</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Este funciona perfectamente si hago:
sudo launchctl load -w /Library/LaunchDaemons/uk.org.thekelleys.dnsmasq.plist
Sin embargo, no se inicia en el arranque. Los permisos son: -rw-r-xr-x Lo que me estoy perdiendo?