Skip to content

Commit 96e799f

Browse files
committed
Add a sample .plist file.
1 parent d442e86 commit 96e799f

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

Makefile.am

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ AUTOMAKE_OPTIONS = gnu
44

55
EXTRA_DIST = \
66
autogen.sh \
7+
com.opendns.osx.DNSCryptProxy.plist \
78
README.markdown \
89
TECHNOTES \
910
THANKS

com.opendns.osx.DNSCryptProxy.plist

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-/Apple/DTD PLIST 1.0/EN" "http:/www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>Label</key>
6+
<string>com.opendns.osx.DNSCryptProxy</string>
7+
<key>KeepAlive</key>
8+
<true/>
9+
<key>RunAtLoad</key>
10+
<true/>
11+
<key>ProgramArguments</key>
12+
<array>
13+
<string>/usr/local/sbin/dnscrypt-proxy</string>
14+
<string>--user=nobody</string>
15+
</array>
16+
<key>StandardErrorPath</key>
17+
<string>/dev/null</string>
18+
<key>StandardOutPath</key>
19+
<string>/dev/null</string>
20+
<key>UserName</key>
21+
<string>root</string>
22+
</dict>
23+
</plist>

0 commit comments

Comments
 (0)