Update to 0.106.0-1

This commit is contained in:
graysky
2021-04-28 11:54:29 -04:00
parent 8f6d203af8
commit b2f6b4d689
3 changed files with 12 additions and 10 deletions

View File

@@ -1,9 +1,11 @@
post_remove() {
echo "==> Optionally delete the adguardhome user and its home directory"
echo "==> if you are certain no processes are running under it."
echo "==> userdel adguardhome"
echo "==> groupdel adguardhome"
echo "==> rm -rf /var/lib/adguardhome"
cat <<END
>>> Optionally delete the adguardhome user and its home directory if you are
certain no processes are running under it:
userdel adguardhome && groupdel adguardhome && rm -rf /var/lib/adguardhome
END
}
# vim:set ts=2 sw=2 et: