#!/bin/sh

if [ "$1" = "remove" ] && nextdns status > /dev/null 2>&1; then
    nextdns uninstall
fi

exit 0