remove_arbi_power.sh 3.2 KB
Newer Older
H
Hui Li 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#!/bin/bash
#
# Script to stop the service and uninstall PowerDB's arbitrator

set -e
#set -x

verMode=edge

RED='\033[0;31m'
GREEN='\033[1;32m'
NC='\033[0m'

#install main path
install_main_dir="/usr/local/tarbitrator"
bin_link_dir="/usr/bin"
#inc_link_dir="/usr/include"

service_config_dir="/etc/systemd/system"
tarbitrator_service_name="tarbitratord"
csudo=""
if command -v sudo > /dev/null; then
23
    csudo="sudo "
H
Hui Li 已提交
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
fi

initd_mod=0
service_mod=2
if pidof systemd &> /dev/null; then
    service_mod=0
elif $(which service &> /dev/null); then    
    service_mod=1
    service_config_dir="/etc/init.d" 
    if $(which chkconfig &> /dev/null); then
         initd_mod=1 
    elif $(which insserv &> /dev/null); then
        initd_mod=2
    elif $(which update-rc.d &> /dev/null); then
        initd_mod=3
    else
        service_mod=2
    fi
else 
    service_mod=2
fi

function kill_tarbitrator() {
  pid=$(ps -ef | grep "tarbitrator" | grep -v "grep" | awk '{print $2}')
  if [ -n "$pid" ]; then
49
    ${csudo}kill -9 $pid   || :
H
Hui Li 已提交
50 51 52 53
  fi
}
function clean_bin() {
    # Remove link
54
    ${csudo}rm -f ${bin_link_dir}/tarbitrator      || :
H
Hui Li 已提交
55 56 57 58
}

function clean_header() {
    # Remove link
59 60 61
    ${csudo}rm -f ${inc_link_dir}/taos.h       || :
    ${csudo}rm -f ${inc_link_dir}/taosdef.h    || :
    ${csudo}rm -f ${inc_link_dir}/taoserror.h  || :
H
Hui Li 已提交
62 63 64 65
}

function clean_log() {
    # Remove link
66
    ${csudo}rm -rf /arbitrator.log    || :
H
Hui Li 已提交
67 68 69 70 71 72 73
}

function clean_service_on_systemd() {
  tarbitratord_service_config="${service_config_dir}/${tarbitrator_service_name}.service"

  if systemctl is-active --quiet ${tarbitrator_service_name}; then
      echo "PowerDB tarbitrator is running, stopping it..."
74
      ${csudo}systemctl stop ${tarbitrator_service_name} &> /dev/null || echo &> /dev/null
H
Hui Li 已提交
75
  fi
76
  ${csudo}systemctl disable ${tarbitrator_service_name} &> /dev/null || echo &> /dev/null
H
Hui Li 已提交
77

78
  ${csudo}rm -f ${tarbitratord_service_config}
H
Hui Li 已提交
79 80 81 82 83
}

function clean_service_on_sysvinit() {
    if pidof tarbitrator &> /dev/null; then
        echo "PowerDB's tarbitrator is running, stopping it..."
84
        ${csudo}service tarbitratord stop || :
H
Hui Li 已提交
85 86 87 88
    fi
    
    if ((${initd_mod}==1)); then    
      if [ -e ${service_config_dir}/tarbitratord ]; then 
89
        ${csudo}chkconfig --del tarbitratord || :
H
Hui Li 已提交
90 91 92
      fi
    elif ((${initd_mod}==2)); then   
      if [ -e ${service_config_dir}/tarbitratord ]; then 
93
        ${csudo}insserv -r tarbitratord || :
H
Hui Li 已提交
94 95 96
      fi
    elif ((${initd_mod}==3)); then  
      if [ -e ${service_config_dir}/tarbitratord ]; then 
97
        ${csudo}update-rc.d -f tarbitratord remove || :
H
Hui Li 已提交
98 99 100
      fi
    fi

101
    ${csudo}rm -f ${service_config_dir}/tarbitratord || :
H
Hui Li 已提交
102 103
   
    if $(which init &> /dev/null); then
104
        ${csudo}init q || :
H
Hui Li 已提交
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
    fi
}

function clean_service() {
    if ((${service_mod}==0)); then
        clean_service_on_systemd
    elif ((${service_mod}==1)); then
        clean_service_on_sysvinit
    else
        # must manual stop  
        kill_tarbitrator
    fi
}

# Stop service and disable booting start.
clean_service
# Remove binary file and links
clean_bin
# Remove header file.
##clean_header
# Remove log file
clean_log

128
${csudo}rm -rf ${install_main_dir}
H
Hui Li 已提交
129 130

echo -e "${GREEN}PowerDB's arbitrator is removed successfully!${NC}"
131
echo