From: Jeff Peeler Date: Sun, 24 Jun 2012 02:41:30 +0000 (-0400) Subject: Add uninstall script for Heat X-Git-Tag: 2014.1~1680^2 X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=6603aa27fed8540dfade5e8541d2e1203f5afebe;p=openstack-build%2Fheat-build.git Add uninstall script for Heat Change-Id: I1f0cbde19f5b75106d93cafdbd0b8fbf47cbbfe0 Signed-off-by: Jeff Peeler --- diff --git a/uninstall.sh b/uninstall.sh new file mode 100755 index 00000000..e9e09f1c --- /dev/null +++ b/uninstall.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +if [ $EUID -ne 0 ]; then + echo "This script must be run as root." + exit +fi + +type -P pip-python &> /dev/null && have_pip_python=1 || have_pip_python=0 +if [ $have_pip_python -eq 1 ]; then + pip-python uninstall -y heat + exit +fi + +type -P pip &> /dev/null && have_pip=1 || have_pip=0 +if [ $have_pip -eq 1 ]; then + pip uninstall -y heat + exit +fi + +echo "pip-python not found. install package (probably python-pip) or run +'easy_install pip', then rerun $0";