From 77ed1b2f05ef1b1f08286965bfd7bc826e7b330b Mon Sep 17 00:00:00 2001 From: oxaliq Date: Wed, 24 Apr 2024 17:03:46 -0400 Subject: [PATCH] add uninstall script --- uninstall.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 uninstall.sh diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 0000000..a72ddaf --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,22 @@ +#!/bin/sh -e + +installtarget=/usr/local/bin +chatlogdir=/var/log/bunkchat +chatlog=chat.log + +# check for root perms +if ! [ "$(id -u)" = 0 ]; then + echo + echo "ERROR: please run uninstall with root permissions" + exit 1 +fi + +echo +echo "uninstalling bunkchat" +chattr -a ${chatlogdir}/${chatlog} # || echo && echo "ERROR: couldn't change attributes on $chatlog" && exit 1 +rm -rf $chatlogdir # || echo & echo "ERROR: couldn't remove $chatlogdir" & exit 1 +rm ${installtarget}/heed +rm ${installtarget}/proclaim +rm ${installtarget}/scry +echo +echo "SUCCESS! bunkchat uninstalled"