LaunchAgentをルートとして実行するにはどうすればよいですか?
ユーザーログイン時にrootとしてプロセスを実行したい。 私/System/Library/LaunchAgents/eXist.plistはrx—r—r—権限で作成しました: <?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>Label</key> <string>eXist DB</string> <key>Program</key> <string>/Applications/eXist-db/bin/startup.sh</string> <key>RunAtLoad</key> <true/> <key>StandardErrorPath</key> <string>/tmp/eXist DB.err</string> <key>StandardOutPath</key> <string>/tmp/eXist DB.out</string> <key>UserName</key> <string>root</string> </dict> </plist> ただし、プロセスdaveaはルートではなくユーザーとして実行され続けます。他に何をする必要がありますか? Mac 10.9.1を使用しています。