From 60f2d6c1f48c92fa2408946fa448d6b2f7b01730 Mon Sep 17 00:00:00 2001 From: dlion Date: Thu, 6 Sep 2012 01:49:50 +0200 Subject: [PATCH] A simple uninstall script --- uninstall.sh | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 uninstall.sh diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 00000000..82515a15 --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,29 @@ +#!/bin/sh + +if [ $(id -u) -ne 0 ]; then + echo -e "* ERROR: User $(whoami) is not root, and does not have sudo privileges" + exit 1 +fi + +if [ ! -f "setup.py" ]; then + echo -e "* ERROR: Setup file doesn't exist" + exit 1 +fi + + + +python setup.py install --record install.record + +for i in $(cat install.record); do + rm $i +done + +echo -e "\n\n* SUCCESS: Uninstall complete." +rm install.record + + + + + + +