9 lines
124 B
Bash
9 lines
124 B
Bash
#!/bin/sh
|
|
|
|
if [ x"$2" != x"DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
${PKG_PREFIX}/nextdns uninstall >/dev/null 2>/dev/null
|
|
|
|
exit 0
|