aboutsummaryrefslogtreecommitdiffstats
path: root/net-im/jabber/pkg-deinstall
diff options
context:
space:
mode:
authornbm <nbm@FreeBSD.org>2000-05-16 22:18:46 +0800
committernbm <nbm@FreeBSD.org>2000-05-16 22:18:46 +0800
commitc5fa99d5b0dcd65cb64d5b8a9acefaa03fc25220 (patch)
treeb531815735cf130d1f4ea0ae3a9ff5a6a2ac4d47 /net-im/jabber/pkg-deinstall
parentc31618771f434e49aede283cccd8e71a44fcc3fa (diff)
downloadfreebsd-ports-gnome-c5fa99d5b0dcd65cb64d5b8a9acefaa03fc25220.tar.gz
freebsd-ports-gnome-c5fa99d5b0dcd65cb64d5b8a9acefaa03fc25220.tar.zst
freebsd-ports-gnome-c5fa99d5b0dcd65cb64d5b8a9acefaa03fc25220.zip
Upgrade jabber-transport to 1.0
PR: 18602 Submitted by: Kostya Lukin <lukin@sapa.ivcme.elektra.ru> (maintainer)
Diffstat (limited to 'net-im/jabber/pkg-deinstall')
-rw-r--r--net-im/jabber/pkg-deinstall71
1 files changed, 71 insertions, 0 deletions
diff --git a/net-im/jabber/pkg-deinstall b/net-im/jabber/pkg-deinstall
new file mode 100644
index 000000000000..355d51ea398d
--- /dev/null
+++ b/net-im/jabber/pkg-deinstall
@@ -0,0 +1,71 @@
+#! /bin/sh
+
+ask() {
+ local question default answer
+
+ question=$1
+ default=$2
+ if [ -z "${PACKAGE_BUILDING}" ]; then
+ read -p "${question} [${default}]? " answer
+ fi
+ if [ x${answer} = x ]; then
+ answer=${default}
+ fi
+ echo ${answer}
+}
+
+yesno() {
+ local dflt question answer
+
+ question=$1
+ dflt=$2
+ while :; do
+ answer=$(ask "${question}" "${dflt}")
+ case "${answer}" in
+ [Yy]*) return 0;;
+ [Nn]*) return 1;;
+ esac
+ echo "Please answer yes or no."
+ done
+}
+
+delete_account() {
+ local u g home
+
+ u=$1
+ g=$2
+ if yesno "Do you want me to remove group \"${g}\"" y; then
+ pw groupdel -n ${g}
+ echo "Done."
+ fi
+ if yesno "Do you want me to remove user \"${u}\"" y; then
+ eval home=~${u}
+ pw userdel -n ${u}
+ echo "Done."
+ if [ -d "${home}" ]; then
+ echo "Please remember to remove the home directory \"${home}\" as"
+ echo "well as the mirrored files."
+ fi
+ fi
+}
+
+if [ x$2 != xDEINSTALL ]; then
+ exit
+fi
+
+export PATH=/bin:/usr/bin:/usr/sbin
+
+user=jserver
+group=jserver
+
+if ps -axc | grep -q jserver; then
+ if yesno "There are some jserver processes running. Shall I kill them" y
+ then
+ killall jserver
+ sleep 2
+ else
+ echo "OK ... I hope you know what you are doing."
+ fi
+fi
+
+delete_account ${user} ${group}