uninstall 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #!/bin/bash -e
  2. # -e Causes bash script to exit if any of the steps
  3. # return with a non-zero return value.
  4. if [[ $EUID -ne 0 ]]; then
  5. echo "Please run as root user."
  6. exit 1
  7. fi
  8. getStorDirFromDatabase() {
  9. DATABASE_NAME="$1"
  10. # here-doc to execute this block as postgres user
  11. result=`su postgres <<EOF
  12. set +e
  13. echo $(psql -d ${DATABASE_NAME} -tAc "SELECT directory FROM cc_music_dirs WHERE type='stor'")
  14. set -e
  15. # don't indent this!
  16. EOF`
  17. echo $result
  18. }
  19. dropAirtimeDatabase() {
  20. DATABASE_NAME="$1"
  21. DATABASE_USER="$2"
  22. # here-doc to execute this block as postgres user
  23. su postgres <<'EOF'
  24. set +e
  25. # DROP DATABASE cannot be executed from a function or multi-command string
  26. psql -d postgres -tAc "DROP DATABASE IF EXISTS ${DATABASE_NAME}"
  27. psql -d postgres -tAc "DROP USER IF EXISTS ${DATABASE_USER}"
  28. set -e
  29. # don't indent this!
  30. EOF
  31. }
  32. removeRabbitmqAirtimeSettings() {
  33. RMQ_VHOST="$1"
  34. RMQ_USER="$2"
  35. rabbitmqctl delete_vhost ${RMQ_VHOST}
  36. rabbitmqctl delete_user ${RMQ_USER}
  37. }
  38. SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
  39. AIRTIMEROOT=${SCRIPT_DIR}
  40. RMQ_VHOST='/airtime'
  41. RMQ_USER='airtime'
  42. POSTGRES_DB='airtime'
  43. POSTGRES_USER='airtime'
  44. POSTGRES_PASSWORD='airtime'
  45. if [ -f '/etc/airtime/airtime.conf' ]; then
  46. RMQ_VHOST=$(awk -F ' = ' '{if (! ($0 ~ /^;/) && $0 ~ /^vhost/ ) print $2}' /etc/airtime/airtime.conf)
  47. RMQ_USER=$(awk -F ' = ' '{if (! ($0 ~ /^;/) && $0 ~ /^user/ ) print $2}' /etc/airtime/airtime.conf)
  48. POSTGRES_DB=$(awk -F ' = ' '{if (! ($0 ~ /^;/) && $0 ~ /^dbname/ ) print $2}' /etc/airtime/airtime.conf)
  49. POSTGRES_USER=$(awk -F ' = ' '{if (! ($0 ~ /^;/) && $0 ~ /^dbuser/ ) print $2}' /etc/airtime/airtime.conf)
  50. POSTGRES_PASSWORD=$(awk -F ' = ' '{if (! ($0 ~ /^;/) && $0 ~ /^dbpass/ ) print $2}' /etc/airtime/airtime.conf)
  51. fi
  52. STOR_DIR=$(getStorDirFromDatabase "$POSTGRES_DB")
  53. FILES=(
  54. "/etc/airtime"
  55. "/var/log/airtime"
  56. "/usr/lib/airtime"
  57. "/usr/share/airtime"
  58. "/etc/init/airtime*"
  59. "/usr/local/bin/airtime-*"
  60. "/usr/bin/airtime*"
  61. "/etc/nginx/sites-available/airtime*"
  62. "/etc/nginx/sites-enabled/airtime*"
  63. )
  64. echo -e "The following files, directories, and services will be removed:\n"
  65. for i in ${FILES[*]}; do
  66. echo $i
  67. done
  68. echo "pip airtime-playout"
  69. echo "pip airtime-media-monitor"
  70. echo -e "\nIf your web root is not listed, you will need to manually remove it."
  71. echo -e "\nThis will *permanently* remove Airtime and all related files from your computer. \
  72. Any files in Airtime directories and subdirectories will be deleted. Are you sure you want to proceed? [y/N]: \c"
  73. read IN
  74. if [[ ! ( "$IN" = "y" || "$IN" = "Y" ) ]]; then
  75. exit 0
  76. fi
  77. if [ -n "${STOR_DIR}" ]; then
  78. echo -e "\nDo you want to remove your music storage directory ${STOR_DIR} and all of its subdirectories? [y/N]: \c"
  79. read IN
  80. if [[ ( "$IN" = "y" || "$IN" = "Y" ) ]]; then
  81. rm -rf "${STOR_DIR}"
  82. fi
  83. else
  84. echo -e "\nNo stor directory found, skipping..."
  85. fi
  86. echo -e "\nUninstalling Airtime..."
  87. removeRabbitmqAirtimeSettings "$RMQ_VHOST" "$RMQ_USER"
  88. for i in ${FILES[*]}; do
  89. rm -rf $i
  90. done
  91. echo -e "\nDo you want to drop your current Airtime database? [y/N]: \c"
  92. read IN
  93. if [[ "$IN" = "y" || "$IN" = "Y" ]]; then
  94. echo -e "\nDropping Airtime database..."
  95. dropAirtimeDatabase "$POSTGRES_DB" "$POSTGRES_USER"
  96. fi
  97. pip uninstall -y airtime-playout airtime-media-monitor
  98. service nginx restart
  99. echo "...Done"