b5c3e0693e
NextDNS client: DNS53 to DNS over HTTPS proxy WWW: https://github.com/nextdns/nextdns PR: 242752 Submitted by: Olivier Poitrey <rs@nextdns.io>
11 lines
161 B
Bash
11 lines
161 B
Bash
#!/bin/sh
|
|
|
|
if [ x"$2" != x"DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
${PKG_PREFIX}/nextdns uninstall >/dev/null 2>/dev/null
|
|
rm -f ${PKG_PREFIX}/etc/nextdns.conf
|
|
|
|
exit 0
|