mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-29 10:21:10 +02:00
Complete patch to bump dnscrypt-proxy to version 1.33 Minor changes to APKBUILD to build with the new sources & make-depends. confd / initd changed to include the additional configurations to set the alternative resolver ip / public keys. Separate patch created to build dnscrypt's dependency libsodium / libsodium-dev (as it no longer forms part of dnscrypt's sources). Post-install script is just status / info using the $STRONG / $RED / $GREEN system colours. Added /sbin/setup-dnscrypt for changing the resolver dnscrypt queries & optionally installing unbound for dns caching. This also uses the system terminal colours. This no longer makes any changes to init.d, it only updates conf.d
25 lines
632 B
Plaintext
25 lines
632 B
Plaintext
#!/sbin/runscript
|
|
|
|
pidfile=/var/run/dnscrypt-proxy/dnscrypt-proxy.pid
|
|
command=/usr/sbin/dnscrypt-proxy
|
|
command_args="--pidfile=$pidfile --daemonize
|
|
--logfile=${DNSCRYPT_LOGFILE:-/var/log/dnscrypt-proxy/dnscrypt-proxy.log}
|
|
--user=${DNSCRYPT_USER:-dnscrypt}
|
|
--local-address=${DNSCRYPT_LOCALIP:-127.0.0.1:53}"
|
|
|
|
|
|
depend() {
|
|
use net
|
|
before dns
|
|
after logger firewall
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath --directory ${pidfile%/*}
|
|
# by default opendns is used but its possible to override
|
|
if [ -n "$RESOLVER" ] && [ -n "$PUBKEY" ] && [ -n "$PROVIDER" ]; then
|
|
command_args="$command_args -r ${RESOLVER} -k ${PUBKEY} -N ${PROVIDER}"
|
|
fi
|
|
}
|
|
|