From f40ffd8028d3dd4f3eef4a3409c531af941d23f0 Mon Sep 17 00:00:00 2001 From: M S Vishwanath Bhat Date: Thu, 12 Jan 2012 23:30:00 +0530 Subject: renaming helper_scrips->helper_scripts and cleaning up the whitespaces Change-Id: I6004e4066fab30e14716ef6475c1281270974d2b Signed-off-by: M S Vishwanath Bhat --- helper_scripts/glusterfs_uninstall.sh | 46 +++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100755 helper_scripts/glusterfs_uninstall.sh (limited to 'helper_scripts/glusterfs_uninstall.sh') diff --git a/helper_scripts/glusterfs_uninstall.sh b/helper_scripts/glusterfs_uninstall.sh new file mode 100755 index 0000000..b3378fd --- /dev/null +++ b/helper_scripts/glusterfs_uninstall.sh @@ -0,0 +1,46 @@ +#!/bin/bash + +#set -x; + +function _init () +{ + # echo $0; + # echo $#; + # echo $1; + set -u; + if [ $# -lt 1 ]; then + echo "usage: download_and_install "; + exit 1; + fi + + version=$1; + echo $version; + echo $version | grep "glusterfs" 2>/dev/null 1>/dev/null; + if [ $? -ne 0 ]; then + echo "given argument is not glusterfs"; + exit 1; + fi +} + +function un_install () +{ + cd /root/$version; + + cd build; + make uninstall && make clean && make distclean; + + cd /root; +} + +main () +{ + + if [ ! -d $version ]; then + echo "the glusterfs version ($version) directory is not there." + return 1; + fi + + un_install; +} + +_init "$@" && main "$@" -- cgit