Update plist file

This commit is contained in:
Arturo Filastò 2020-12-09 12:51:28 +01:00 committed by GitHub
parent fa9ac93804
commit 5b838ec188
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,31 +40,25 @@ You may also want to adjust the locations of the logs.
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0"> <plist version="1.0">
<dict> <dict>
<key>Label</key> <key>Label</key>
<string>org.ooni.probe.daily-run</string> <string>#{plist_name}</string>
<key>KeepAlive</key> <key>KeepAlive</key>
<false/> <false/>
<key>RunAtLoad</key> <key>RunAtLoad</key>
<true/> <true/>
<key>Program</key> <key>ProgramArguments</key>
<string>/PATH/TO/BINARY/ooniprobe</string> <array>
<key>ProgramArguments</key> <string>/PATH/TO/BINARY/ooniprobe</string>
<array> <string>--log-handler=syslog</string>
<string>--config="/PATH/TO/CONFIG/config-100sites.json"</string> <string>run</string>
<string>--batch</string> <string>unattended</string>
<string>run</string> </array>
</array>
<key>StartInterval</key> <key>StartInterval</key>
<integer>3600</integer> <integer>86400</integer>
<key>StandardErrorPath</key>
<string>/tmp/ooniprobe-cli.err</string>
<key>StandardOutPath</key>
<string>/tmp/ooniprobe-cli.out</string>
</dict> </dict>
</plist> </plist>
``` ```