Delete install.sh

This commit is contained in:
FusionPBX 2017-03-18 01:14:19 -06:00 committed by GitHub
parent 5a2f3521cb
commit 4aec1934d5
1 changed files with 0 additions and 188 deletions

View File

@ -1,188 +0,0 @@
#!/bin/sh
# Exit codes
# 1 general error
# 2 unsupported OS
# 3 unsupported CPU/OS bits
verbose () {
echo "${green}$1${normal}"
}
error () {
echo "${red}$1${normal}"
}
# check for color support
if test -t 1; then
# see if it supports colors...
ncolors=$(tput colors)
if test -n "$ncolors" && test $ncolors -ge 8; then
bold="$(tput bold)"
underline="$(tput smul)"
standout="$(tput smso)"
normal="$(tput sgr0)"
black="$(tput setaf 0)"
red="$(tput setaf 1)"
green="$(tput setaf 2)"
yellow="$(tput setaf 3)"
blue="$(tput setaf 4)"
magenta="$(tput setaf 5)"
cyan="$(tput setaf 6)"
white="$(tput setaf 7)"
fi
verbose "Enabled color support"
fi
# check to confirm running as root.
if [ "$(id -u)" -ne "0" ]; then
error "$(basename "$0") must be run as root";
exit 1
fi
#Make ourselves executable next time we are run
chmod +x $0
#Os/Distro Check
os_check=$(lsb_release -is)
[ -z $os_check ] && os_lsb_release_installer
lsb_release -is && os_check=$(lsb_release -is)
real_os=$os_check
check_major_release=$(lsb_release -rs | cut -d. -f1)
check_codename=$(lsb_release -cs)
os_unsupported () {
echo " Your Operating System appears to be: "
lsb_release -a
error "Your Operating System is not currently supported... Exiting the install."
exit 2;
}
os_lsb_release_installer () {
if [ -s /etc/centos-release ] || [ -s /etc/fedora-release] || [ -s /etc/redhat-release ] ; then
yum -y install redhat-lsb-core
os_check='CentOS'
elif [ -s /etc/os-release ] && [ .`awk -F'=' '/^ID_LIKE=/ {print $2}' /etc/os-release` = .'debian' ] ; then
apt-get -y install lsb-base lsb-release
os_check='Debian'
fi
#try to find and use package manager
which yum && { yum -y install redhat-lsb-core ; }
which apt-get && { apt-get -y install lsb-base lsb-release ; }
#print location and file type
which lsb_release && file $(which lsb_release)
}
os_debian_common () {
verbose "Removing the CD image from /etc/apt/sources.list"
sed -i '/cdrom:/d' /etc/apt/sources.list
verbose "Updating system before starting."
apt-get update && apt-get -y upgrade
verbose "Installing Git"
apt-get install -y git
}
os_centos_common () {
verbose "Updating system before starting."
yum -y update
verbose "Installing Git"
yum install -y git
}
os_fetch_installer () {
if [ ! -d /usr/src ]; then
mkdir -vp /usr/src
fi
cd /usr/src
verbose "Fetching Installer"
if [ -d /usr/src/fusionpbx-install.sh ]; then
cd /usr/src/fusionpbx-install.sh
git pull
else
git clone https://github.com/fusionpbx/fusionpbx-install.sh
fi
}
if [ .$os_check = .'Raspbian' ]; then
echo "${yellow}Detected Raspbian, using Debian for compatibility${normal}"
os_check="Debian"
fi
if [ .$os_check = .'Ubuntu' ]; then
echo "${yellow}Detected Ubuntu, using Debian for compatibility${normal}"
os_check="Debian"
fi
if [ .$os_check = .'Fedora' ]; then
echo "${yellow}Detected Fedora, using CentOS for compatibility${normal}"
os_check="CentOS"
fi
if [ .$os_check = .'RedHatEnterpriseServer' ]; then
echo "${yellow}Detected RedHatEnterpriseServer, using CentOS for compatibility${normal}"
os_check="CentOS"
fi
if [ .$os_check = .'Debian' ]; then
if [ .$real_os = .'Debian' ]; then
echo "${yellow}Detected Debian${normal}"
if [ $check_major_release -ge 8 ]; then
os_debian_continue='true'
else
os_debian_continue='false'
error "Although you are running $real_os we require version >= 8"
os_unsupported
fi
fi
if [ .$real_os = .'Ubuntu' ]; then
if [ $check_major_release -ge 14 ]; then
os_debian_continue='true'
else
os_debian_continue='false'
error "Although you are running $real_os we require version >= 14"
os_unsupported
fi
fi
if [ .$os_debian_continue = .'true' ]; then
os_debian_common
os_fetch_installer
cd /usr/src/fusionpbx-install.sh/debian
./install.sh $@
fi
elif [ .$os_check = .'CentOS' ]; then
if [ .$real_os = .'CentOS' ]; then
echo "${yellow}Detected CentOS${normal}"
if [ $check_major_release -ge 7 ]; then
os_centos_continue='true'
else
os_centos_continue='false'
error "Although you are running $real_os we require version >= 7"
os_unsupported
fi
fi
if [ .$real_os = .'Fedora' ]; then
echo "${yellow}Detected Fedora${normal}"
if [ $check_major_release -ge 19 ]; then
os_centos_continue='true'
else
os_centos_continue='false'
error "Although you are running $real_os we require version >= 19"
os_unsupported
fi
fi
if [ .$real_os = .'RedHatEnterpriseServer' ]; then
if [ $check_major_release -ge 7 ]; then
os_centos_continue='true'
else
os_centos_continue='false'
error "Although you are running $real_os we require version >= 7"
os_unsupported
fi
fi
if [ .$os_centos_continue = .'true' ]; then
os_centos_common
os_fetch_installer
cd /usr/src/fusionpbx-install.sh/centos
./install.sh $@
fi
else
os_unsupported
fi