2016-03-25 01:18:05 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
######################################################
|
|
|
|
# Snipe-It Install Script #
|
|
|
|
# Script created by Mike Tucker #
|
|
|
|
# mtucker6784@gmail.com #
|
|
|
|
# This script is just to help streamline the #
|
|
|
|
# install process for Debian and CentOS #
|
|
|
|
# based distributions. I assume you will be #
|
|
|
|
# installing as a subdomain on a fresh OS install. #
|
|
|
|
# #
|
|
|
|
# Feel free to modify, but please give #
|
|
|
|
# credit where it's due. Thanks! #
|
|
|
|
######################################################
|
|
|
|
|
|
|
|
# ensure running as root
|
|
|
|
if [ "$(id -u)" != "0" ]; then
|
2017-10-05 00:02:14 -07:00
|
|
|
#Debian doesnt have sudo if root has a password.
|
|
|
|
if ! hash sudo 2>/dev/null; then
|
|
|
|
exec su -c "$0" "$@"
|
|
|
|
else
|
|
|
|
exec sudo "$0" "$@"
|
|
|
|
fi
|
2016-03-25 01:18:05 -07:00
|
|
|
fi
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
#First things first, let's set some variables and find our distro.
|
|
|
|
clear
|
|
|
|
|
|
|
|
name="snipeit"
|
2017-10-06 22:58:41 -07:00
|
|
|
verbose="false"
|
2016-03-25 01:18:05 -07:00
|
|
|
hostname="$(hostname)"
|
|
|
|
fqdn="$(hostname --fqdn)"
|
|
|
|
hosts=/etc/hosts
|
|
|
|
|
2016-09-20 13:26:53 -07:00
|
|
|
spin[0]="-"
|
|
|
|
spin[1]="\\"
|
|
|
|
spin[2]="|"
|
|
|
|
spin[3]="/"
|
|
|
|
|
2016-09-29 22:37:05 -07:00
|
|
|
# Debian/Ubuntu friendly f(x)s
|
2016-09-20 13:26:53 -07:00
|
|
|
progress () {
|
2017-10-02 21:37:04 -07:00
|
|
|
while kill -0 $pid > /dev/null 2>&1
|
2016-09-20 13:26:53 -07:00
|
|
|
do
|
2017-10-02 12:59:53 -07:00
|
|
|
for i in "${spin[@]}"
|
2016-09-20 13:26:53 -07:00
|
|
|
do
|
|
|
|
echo -ne "\b$i"
|
|
|
|
sleep .1
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
setvhdebian () {
|
2017-10-02 12:59:53 -07:00
|
|
|
find /etc/apache2/mods-enabled -maxdepth 1 -name 'rewrite.load' >/dev/null 2>&1
|
|
|
|
apachefile=/etc/apache2/sites-available/$name.conf
|
|
|
|
{
|
|
|
|
echo "<VirtualHost *:80>"
|
|
|
|
echo "ServerAdmin webmaster@localhost"
|
|
|
|
echo "<Directory $webdir/$name/public>"
|
|
|
|
echo " Require all granted"
|
|
|
|
echo " AllowOverride All"
|
|
|
|
echo " </Directory>"
|
|
|
|
echo " DocumentRoot $webdir/$name/public"
|
|
|
|
echo " ServerName $fqdn"
|
|
|
|
echo " ErrorLog /var/log/apache2/snipeIT.error.log"
|
|
|
|
echo " CustomLog /var/log/apache2/access.log combined"
|
|
|
|
echo "</VirtualHost>"
|
|
|
|
} >> $apachefile
|
|
|
|
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
|
|
|
log "a2ensite $name.conf"
|
2016-09-29 22:37:05 -07:00
|
|
|
}
|
2016-09-20 13:26:53 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
setvhcentos () {
|
|
|
|
apachefile=/etc/httpd/conf.d/$name.conf
|
|
|
|
{
|
|
|
|
echo "<VirtualHost *:80>"
|
|
|
|
echo "ServerAdmin webmaster@localhost"
|
|
|
|
echo " <Directory $webdir/$name/public>"
|
|
|
|
echo " Allow From All"
|
|
|
|
echo " AllowOverride All"
|
|
|
|
echo " Options +Indexes"
|
|
|
|
echo " </Directory>"
|
|
|
|
echo " DocumentRoot $webdir/$name/public"
|
|
|
|
echo " ServerName $fqdn"
|
|
|
|
echo " ErrorLog /var/log/httpd/snipeIT.error.log"
|
|
|
|
echo " CustomLog /var/log/access.log combined"
|
|
|
|
echo "</VirtualHost>"
|
|
|
|
} >> "$apachefile"
|
2017-01-10 23:07:06 -08:00
|
|
|
}
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-01-10 23:07:06 -08:00
|
|
|
log () {
|
2017-10-06 22:58:41 -07:00
|
|
|
if [ "$verbose" = true ]; then
|
|
|
|
eval "$@"
|
|
|
|
else
|
|
|
|
eval "$@" |& tee -a /var/log/snipeit-install.log >/dev/null 2>&1
|
|
|
|
fi
|
2016-09-29 22:37:05 -07:00
|
|
|
}
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
installsnipeit () {
|
|
|
|
echo "* Cloning Snipe-IT from github to the web directory."
|
|
|
|
log "git clone https://github.com/snipe/snipe-it $webdir/$name"
|
|
|
|
|
|
|
|
echo "* Configuring .env file."
|
2017-10-02 21:37:04 -07:00
|
|
|
cp $webdir/$name/.env.example $webdir/$name/.env
|
|
|
|
|
|
|
|
sed -i '1 i\#Created By Snipe-it Installer' $webdir/$name/.env
|
|
|
|
sed -i 's,^\(APP_TIMEZONE=\).*,\1'$tzone',' $webdir/$name/.env
|
|
|
|
sed -i 's,^\(DB_HOST=\).*,\1'localhost',' $webdir/$name/.env
|
|
|
|
sed -i 's,^\(DB_DATABASE=\).*,\1'snipeit',' $webdir/$name/.env
|
|
|
|
sed -i 's,^\(DB_USERNAME=\).*,\1'snipeit',' $webdir/$name/.env
|
|
|
|
sed -i 's,^\(DB_PASSWORD=\).*,\1'$mysqluserpw',' $webdir/$name/.env
|
|
|
|
sed -i 's,^\(APP_URL=\).*,\1'http://$fqdn',' $webdir/$name/.env
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Installing and running composer."
|
|
|
|
cd $webdir/$name/
|
|
|
|
curl -sS https://getcomposer.org/installer | php
|
|
|
|
php composer.phar install --no-dev --prefer-source
|
|
|
|
|
|
|
|
echo "* Setting permissions."
|
|
|
|
chmod_dirs=( "$webdir/$name/storage" )
|
|
|
|
chmod_dirs+=( "$webdir/$name/storage/private_uploads" )
|
|
|
|
chmod_dirs+=( "$webdir/$name/public/uploads" )
|
|
|
|
for chmod_dir in "${chmod_dirs[@]}"
|
|
|
|
do
|
|
|
|
chmod -R 755 "$chmod_dir"
|
|
|
|
done
|
|
|
|
chown -R $ownergroup $webdir/$name
|
|
|
|
|
|
|
|
echo "* Generating the application key."
|
|
|
|
log "php artisan key:generate --force"
|
|
|
|
|
|
|
|
echo "* Artisan Migrate."
|
|
|
|
log "php artisan migrate --force"
|
|
|
|
|
|
|
|
echo "* Creating scheduler cron."
|
|
|
|
(crontab -l ; echo "* * * * * /usr/bin/php $webdir/$name/artisan schedule:run >> /dev/null 2>&1") | crontab -
|
2017-10-05 21:27:00 -07:00
|
|
|
}
|
|
|
|
|
2016-09-29 22:37:05 -07:00
|
|
|
#CentOS Friendly f(x)s
|
2016-03-25 01:18:05 -07:00
|
|
|
function isinstalled {
|
2017-10-02 12:59:53 -07:00
|
|
|
if yum list installed "$@" >/dev/null 2>&1; then
|
|
|
|
true
|
|
|
|
else
|
|
|
|
false
|
|
|
|
fi
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2016-05-28 18:35:28 -07:00
|
|
|
if [ -f /etc/lsb-release ]; then
|
|
|
|
distro="$(lsb_release -s -i )"
|
|
|
|
version="$(lsb_release -s -r)"
|
2017-06-09 12:23:32 -07:00
|
|
|
codename="$(lsb_release -c -s)"
|
2016-05-28 18:35:28 -07:00
|
|
|
elif [ -f /etc/os-release ]; then
|
2017-10-02 12:59:53 -07:00
|
|
|
distro="$(. /etc/os-release && echo $ID)"
|
|
|
|
version="$(. /etc/os-release && echo $VERSION_ID)"
|
|
|
|
#Order is important here. If /etc/os-release and /etc/centos-release exist, we're on centos 7.
|
|
|
|
#If only /etc/centos-release exist, we're on centos6(or earlier). Centos-release is less parsable,
|
|
|
|
#so lets assume that it's version 6 (Plus, who would be doing a new install of anything on centos5 at this point..)
|
2016-08-01 11:08:46 -07:00
|
|
|
elif [ -f /etc/centos-release ]; then
|
2017-10-02 12:59:53 -07:00
|
|
|
distro="Centos"
|
|
|
|
version="6"
|
2016-05-28 18:35:28 -07:00
|
|
|
else
|
2017-10-02 12:59:53 -07:00
|
|
|
distro="unsupported"
|
2016-05-28 18:35:28 -07:00
|
|
|
fi
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
echo "
|
2017-10-02 12:59:53 -07:00
|
|
|
_____ _ __________
|
|
|
|
/ ___/____ (_)___ ___ / _/_ __/
|
|
|
|
\__ \/ __ \/ / __ \/ _ \______ / / / /
|
|
|
|
___/ / / / / / /_/ / __/_____// / / /
|
|
|
|
/____/_/ /_/_/ .___/\___/ /___/ /_/
|
|
|
|
/_/
|
2016-03-25 01:18:05 -07:00
|
|
|
"
|
|
|
|
|
|
|
|
echo ""
|
2017-10-06 22:58:41 -07:00
|
|
|
echo " Welcome to Snipe-IT Inventory Installer for CentOS, Debian and Ubuntu!"
|
2016-03-25 01:18:05 -07:00
|
|
|
echo ""
|
2016-05-16 21:22:33 -07:00
|
|
|
shopt -s nocasematch
|
2016-03-25 01:18:05 -07:00
|
|
|
case $distro in
|
2017-10-02 12:59:53 -07:00
|
|
|
*Ubuntu*)
|
|
|
|
echo " The installer has detected Ubuntu version $version as the OS."
|
|
|
|
distro=ubuntu
|
|
|
|
;;
|
|
|
|
*Debian*)
|
|
|
|
echo " The installer has detected Debian version $version as the OS."
|
|
|
|
distro=debian
|
|
|
|
;;
|
|
|
|
*centos*|*redhat*|*ol*|*rhel*)
|
|
|
|
echo " The installer has detected $distro version $version as the OS."
|
|
|
|
distro=centos
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo " The installer was unable to determine your OS. Exiting for safety."
|
|
|
|
exit
|
|
|
|
;;
|
2016-03-25 01:18:05 -07:00
|
|
|
esac
|
2016-05-16 21:22:33 -07:00
|
|
|
shopt -u nocasematch
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
echo -n " Q. What is the FQDN of your server? ($fqdn): "
|
|
|
|
read fqdn
|
|
|
|
if [ -z "$fqdn" ]; then
|
2017-10-02 12:59:53 -07:00
|
|
|
fqdn="$(hostname --fqdn)"
|
2016-03-25 01:18:05 -07:00
|
|
|
fi
|
|
|
|
echo " Setting to $fqdn"
|
|
|
|
echo ""
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
ans=default
|
2016-03-25 01:18:05 -07:00
|
|
|
until [[ $ans == "yes" ]] || [[ $ans == "no" ]]; do
|
2017-10-02 12:59:53 -07:00
|
|
|
echo -n " Q. Do you want to automatically create the database user password? (y/n) "
|
2016-03-25 01:18:05 -07:00
|
|
|
read setpw
|
|
|
|
|
|
|
|
case $setpw in
|
2017-10-02 12:59:53 -07:00
|
|
|
[yY] | [yY][Ee][Ss] )
|
|
|
|
mysqluserpw="$(echo `< /dev/urandom tr -dc _A-Za-z-0-9 | head -c16`)"
|
2017-10-05 21:27:00 -07:00
|
|
|
echo ""
|
2017-10-02 12:59:53 -07:00
|
|
|
ans="yes"
|
|
|
|
;;
|
|
|
|
[nN] | [n|N][O|o] )
|
|
|
|
echo -n " Q. What do you want your snipeit user password to be?"
|
|
|
|
read -s mysqluserpw
|
|
|
|
echo ""
|
2017-10-05 21:27:00 -07:00
|
|
|
ans="no"
|
2017-10-02 12:59:53 -07:00
|
|
|
;;
|
|
|
|
*) echo " Invalid answer. Please type y or n"
|
|
|
|
;;
|
2016-03-25 01:18:05 -07:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2017-10-05 00:02:14 -07:00
|
|
|
#TODO: Lets not install snipeit application under root
|
|
|
|
#TODO: Make progress tracker go on the same line of the step being run
|
|
|
|
#TODO: Progress tracker on each step
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
case $distro in
|
2017-10-02 12:59:53 -07:00
|
|
|
debian)
|
2017-10-05 21:27:00 -07:00
|
|
|
if [[ "$version" =~ ^9 ]]; then
|
2017-10-05 00:02:14 -07:00
|
|
|
##################################### Install for Debian 9 ##############################################
|
2017-10-02 12:59:53 -07:00
|
|
|
webdir=/var/www
|
2017-10-06 22:58:41 -07:00
|
|
|
ownergroup=www-data:www-data
|
|
|
|
tzone=$(cat /etc/timezone)
|
2017-10-05 00:02:14 -07:00
|
|
|
|
|
|
|
echo "* Updating with apt-get update."
|
|
|
|
log "apt-get update" & pid=$!
|
2017-10-02 12:59:53 -07:00
|
|
|
progress
|
2017-10-05 00:02:14 -07:00
|
|
|
|
|
|
|
echo "* Upgrading packages with apt-get upgrade."
|
|
|
|
log "apt-get -y upgrade" & pid=$!
|
|
|
|
progress
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
|
2017-10-05 00:02:14 -07:00
|
|
|
log "DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server mariadb-client apache2 libapache2-mod-php php php-mcrypt php-curl php-mysql php-gd php-ldap php-zip php-mbstring php-xml php-bcmath curl git unzip" & pid=$!
|
2017-10-02 12:59:53 -07:00
|
|
|
progress
|
2017-10-05 00:02:14 -07:00
|
|
|
|
|
|
|
log "a2enmod rewrite"
|
|
|
|
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Creating the new virtual host in Apache."
|
2017-10-06 22:58:41 -07:00
|
|
|
setvhdebian
|
2017-10-05 21:27:00 -07:00
|
|
|
|
2017-10-02 12:59:53 -07:00
|
|
|
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Securing MariaDB."
|
2017-10-02 12:59:53 -07:00
|
|
|
/usr/bin/mysql_secure_installation
|
2017-10-05 00:02:14 -07:00
|
|
|
|
|
|
|
echo "* Creating MariaDB Database/User."
|
|
|
|
echo "* Please Input your MariaDB root password:"
|
|
|
|
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
installsnipeit
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Restarting Apache httpd."
|
|
|
|
log "service apache2 restart"
|
2017-10-05 21:27:00 -07:00
|
|
|
|
|
|
|
else
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "Unsupported Debian version. Version found: " $version
|
2017-10-05 21:27:00 -07:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
;;
|
2017-10-02 12:59:53 -07:00
|
|
|
ubuntu)
|
2017-10-05 00:02:14 -07:00
|
|
|
if [[ "$version" =~ 1[6-7] ]]; then
|
|
|
|
##################################### Install for Ubuntu 16-17 ##############################################
|
2017-10-02 12:59:53 -07:00
|
|
|
webdir=/var/www
|
2017-10-06 22:58:41 -07:00
|
|
|
ownergroup=www-data:www-data
|
|
|
|
tzone=$(cat /etc/timezone)
|
2017-10-02 21:37:04 -07:00
|
|
|
|
|
|
|
echo "* Adding MariaDB repository."
|
2017-10-02 12:59:53 -07:00
|
|
|
log "apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8"
|
2017-10-05 00:02:14 -07:00
|
|
|
log "add-apt-repository 'deb [arch=amd64,i386] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.1/ubuntu $codename main'"
|
2017-10-02 21:37:04 -07:00
|
|
|
|
|
|
|
echo "* Updating with apt-get update."
|
2017-10-02 12:59:53 -07:00
|
|
|
log "apt-get update" & pid=$!
|
2017-10-06 22:58:41 -07:00
|
|
|
#https://wiki.debian.org/Teams/Dpkg/FAQ#Q:_What_can_be_done_when_the_dpkg_lock_is_held.3F
|
|
|
|
#[ -f /var/lib/dpkg/lock ] && rm -f /var/lib/dpkg/lock
|
2017-10-02 12:59:53 -07:00
|
|
|
progress
|
2017-10-02 21:37:04 -07:00
|
|
|
|
|
|
|
echo "* Upgrading packages with apt-get upgrade."
|
2017-10-02 12:59:53 -07:00
|
|
|
log "apt-get -y upgrade" & pid=$!
|
|
|
|
progress
|
2017-10-02 21:37:04 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
|
2017-10-05 00:02:14 -07:00
|
|
|
log "DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server mariadb-client apache2 libapache2-mod-php php php-mcrypt php-curl php-mysql php-gd php-ldap php-zip php-mbstring php-xml php-bcmath curl git unzip" & pid=$!
|
2017-10-02 12:59:53 -07:00
|
|
|
progress
|
2017-10-02 21:37:04 -07:00
|
|
|
|
2017-10-05 00:02:14 -07:00
|
|
|
log "phpenmod mcrypt"
|
|
|
|
log "phpenmod mbstring"
|
|
|
|
log "a2enmod rewrite"
|
2017-10-02 21:37:04 -07:00
|
|
|
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Creating the new virtual host in Apache."
|
2017-10-06 22:58:41 -07:00
|
|
|
setvhdebian
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Starting MariaDB."
|
|
|
|
log "service mysql start"
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Securing MariaDB."
|
2017-10-02 12:59:53 -07:00
|
|
|
/usr/bin/mysql_secure_installation
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-02 21:37:04 -07:00
|
|
|
echo "* Creating MariaDB Database/User."
|
|
|
|
echo "* Please Input your MariaDB root password:"
|
2017-10-05 00:02:14 -07:00
|
|
|
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
2017-10-02 21:37:04 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
installsnipeit
|
2017-10-02 21:37:04 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Restarting Apache httpd."
|
|
|
|
log "service apache2 restart"
|
2017-10-05 00:02:14 -07:00
|
|
|
|
|
|
|
elif [[ "$version" =~ 14 ]]; then
|
|
|
|
##################################### Install for Ubuntu 14 ##############################################
|
|
|
|
webdir=/var/www
|
2017-10-06 22:58:41 -07:00
|
|
|
ownergroup=www-data:www-data
|
|
|
|
tzone=$(cat /etc/timezone)
|
2017-10-05 00:02:14 -07:00
|
|
|
|
|
|
|
echo "* Adding MariaDB and ppa:ondrej/php repositories."
|
|
|
|
log "apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db"
|
|
|
|
log "add-apt-repository 'deb [arch=amd64,i386,ppc64el] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.1/ubuntu $codename main'"
|
|
|
|
#PHP7 repository
|
|
|
|
log "add-apt-repository ppa:ondrej/php -y"
|
|
|
|
|
|
|
|
echo "* Updating with apt-get update."
|
|
|
|
log "apt-get update" & pid=$!
|
2017-10-06 22:58:41 -07:00
|
|
|
#https://wiki.debian.org/Teams/Dpkg/FAQ#Q:_What_can_be_done_when_the_dpkg_lock_is_held.3F
|
|
|
|
#[ -f /var/lib/dpkg/lock ] && rm -f /var/lib/dpkg/lock
|
2017-10-05 00:02:14 -07:00
|
|
|
progress
|
|
|
|
|
|
|
|
echo "* Upgrading packages with apt-get upgrade."
|
|
|
|
log "apt-get -y upgrade" & pid=$!
|
|
|
|
progress
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
|
2017-10-05 00:02:14 -07:00
|
|
|
log "DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server mariadb-client php7.1 php7.1-mcrypt php7.1-curl php7.1-mysql php7.1-gd php7.1-ldap php7.1-zip php7.1-mbstring php7.1-xml php7.1-bcmath curl git unzip" & pid=$!
|
|
|
|
progress
|
|
|
|
|
|
|
|
log "phpenmod mcrypt"
|
|
|
|
log "phpenmod mbstring"
|
|
|
|
log "a2enmod rewrite"
|
|
|
|
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Creating the new virtual host in Apache."
|
2017-10-06 22:58:41 -07:00
|
|
|
setvhdebian
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Starting MariaDB."
|
|
|
|
log "service mysql start"
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Securing MariaDB."
|
2017-10-05 00:02:14 -07:00
|
|
|
/usr/bin/mysql_secure_installation
|
|
|
|
|
|
|
|
echo "* Creating MariaDB Database/User."
|
|
|
|
echo "* Please Input your MariaDB root password:"
|
|
|
|
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
installsnipeit
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Restarting Apache httpd."
|
|
|
|
log "service apache2 restart"
|
2017-10-05 00:02:14 -07:00
|
|
|
|
|
|
|
else
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "Unsupported Ubuntu version. Version found: " $version
|
2017-10-05 00:02:14 -07:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
centos)
|
2017-10-02 12:59:53 -07:00
|
|
|
if [[ "$version" =~ ^6 ]]; then
|
2017-10-06 22:58:41 -07:00
|
|
|
##################################### Install for CentOS/Redhat 6 ##############################################
|
2017-10-02 12:59:53 -07:00
|
|
|
webdir=/var/www/html
|
2017-10-06 22:58:41 -07:00
|
|
|
ownergroup=apache:apache
|
|
|
|
tzone=$(grep ZONE /etc/sysconfig/clock | tr -d '"' | sed 's/ZONE=//g');
|
2017-10-05 00:02:14 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Adding IUS, epel-release and MariaDB repositories."
|
2017-10-02 12:59:53 -07:00
|
|
|
mariadbRepo=/etc/yum.repos.d/MariaDB.repo
|
|
|
|
touch "$mariadbRepo"
|
|
|
|
{
|
|
|
|
echo "[mariadb]"
|
|
|
|
echo "name = MariaDB"
|
|
|
|
echo "baseurl = http://yum.mariadb.org/10.0/centos6-amd64"
|
|
|
|
echo "gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB"
|
|
|
|
echo "gpgcheck=1"
|
|
|
|
echo "enable=1"
|
|
|
|
} >> "$mariadbRepo"
|
|
|
|
|
|
|
|
log "yum -y install wget epel-release"
|
2017-10-05 00:02:14 -07:00
|
|
|
log "yum -y install https://centos6.iuscommunity.org/ius-release.rpm"
|
|
|
|
log "rpm --import /etc/pki/rpm-gpg/IUS-COMMUNITY-GPG-KEY"
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
|
2017-10-02 12:59:53 -07:00
|
|
|
PACKAGES="httpd mariadb-server git unzip php71u php71u-mysqlnd php71u-bcmath php71u-cli php71u-common php71u-embedded php71u-gd php71u-mbstring php71u-mcrypt php71u-ldap php71u-json php71u-simplexml"
|
|
|
|
|
|
|
|
for p in $PACKAGES;do
|
|
|
|
if isinstalled "$p"; then
|
2017-10-05 21:27:00 -07:00
|
|
|
echo " * $p already installed"
|
2017-10-02 12:59:53 -07:00
|
|
|
else
|
2017-10-05 21:27:00 -07:00
|
|
|
echo " * Installing $p ... "
|
2017-10-02 12:59:53 -07:00
|
|
|
log "yum -y install $p"
|
|
|
|
fi
|
|
|
|
done;
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Setting MariaDB to start on boot and starting MariaDB."
|
|
|
|
log "chkconfig mysql on"
|
|
|
|
log "/sbin/service mysql start"
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Securing MariaDB."
|
2017-10-02 12:59:53 -07:00
|
|
|
/usr/bin/mysql_secure_installation
|
|
|
|
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Creating MariaDB Database/User."
|
|
|
|
echo "* Please Input your MariaDB root password: "
|
2017-10-05 00:02:14 -07:00
|
|
|
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
2017-10-02 12:59:53 -07:00
|
|
|
|
|
|
|
#Create the new virtual host in Apache and enable rewrite
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Creating the new virtual host in Apache."
|
2017-10-06 22:58:41 -07:00
|
|
|
setvhcentos
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Setting up hosts file."
|
2017-10-02 12:59:53 -07:00
|
|
|
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
|
|
|
|
|
|
|
/sbin/service iptables status >/dev/null 2>&1
|
|
|
|
if [ $? = 0 ]; then
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Configuring iptables."
|
2017-10-02 12:59:53 -07:00
|
|
|
iptables -I INPUT 1 -p tcp -m tcp --dport 80 -j ACCEPT
|
|
|
|
iptables -I INPUT 1 -p tcp -m tcp --dport 443 -j ACCEPT
|
|
|
|
service iptables save
|
|
|
|
fi
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
installsnipeit
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Setting Apache httpd to start on boot and starting service."
|
|
|
|
log "chkconfig httpd on"
|
|
|
|
log "/sbin/service httpd start"
|
2017-10-02 12:59:53 -07:00
|
|
|
|
|
|
|
elif [[ "$version" =~ ^7 ]]; then
|
2017-10-06 22:58:41 -07:00
|
|
|
##################################### Install for CentOS/Redhat 7 ##############################################
|
2017-10-02 12:59:53 -07:00
|
|
|
webdir=/var/www/html
|
2017-10-06 22:58:41 -07:00
|
|
|
ownergroup=apache:apache
|
|
|
|
tzone=$(timedatectl | gawk -F'[: ]' ' $9 ~ /zone/ {print $11}');
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Adding IUS, epel-release and MariaDB repositories."
|
2017-10-02 12:59:53 -07:00
|
|
|
log "yum -y install wget epel-release"
|
2017-10-05 00:02:14 -07:00
|
|
|
log "yum -y install https://centos7.iuscommunity.org/ius-release.rpm"
|
|
|
|
log "rpm --import /etc/pki/rpm-gpg/IUS-COMMUNITY-GPG-KEY"
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Installing Apache httpd, PHP, MariaDB and other requirements."
|
2017-10-02 12:59:53 -07:00
|
|
|
PACKAGES="httpd mariadb-server git unzip php71u php71u-mysqlnd php71u-bcmath php71u-cli php71u-common php71u-embedded php71u-gd php71u-mbstring php71u-mcrypt php71u-ldap php71u-json php71u-simplexml"
|
|
|
|
|
|
|
|
for p in $PACKAGES;do
|
|
|
|
if isinstalled "$p"; then
|
2017-10-05 21:27:00 -07:00
|
|
|
echo " * $p already installed"
|
2017-10-02 12:59:53 -07:00
|
|
|
else
|
2017-10-05 21:27:00 -07:00
|
|
|
echo " * Installing $p ... "
|
2017-10-02 12:59:53 -07:00
|
|
|
log "yum -y install $p"
|
|
|
|
fi
|
|
|
|
done;
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Setting MariaDB to start on boot and starting MariaDB."
|
|
|
|
log "systemctl enable mariadb.service"
|
|
|
|
log "systemctl start mariadb.service"
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Securing MariaDB."
|
2017-10-02 12:59:53 -07:00
|
|
|
/usr/bin/mysql_secure_installation
|
|
|
|
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Creating MariaDB Database/User."
|
|
|
|
echo "* Please Input your MariaDB root password "
|
2017-10-05 00:02:14 -07:00
|
|
|
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-05 00:02:14 -07:00
|
|
|
#TODO make sure the apachefile doesnt exist isnt already in there
|
2017-10-02 12:59:53 -07:00
|
|
|
#Create the new virtual host in Apache and enable rewrite
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Creating the new virtual host in Apache."
|
2017-10-06 22:58:41 -07:00
|
|
|
setvhcentos
|
2017-10-02 12:59:53 -07:00
|
|
|
|
2017-10-05 00:02:14 -07:00
|
|
|
#TODO make sure this isnt already in there
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Setting up hosts file."
|
2017-10-02 12:59:53 -07:00
|
|
|
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
installsnipeit
|
2017-10-02 12:59:53 -07:00
|
|
|
|
|
|
|
#Check if SELinux is enforcing
|
|
|
|
if [ "$(getenforce)" == "Enforcing" ]; then
|
2017-10-05 21:27:00 -07:00
|
|
|
echo "* Configuring SELinux."
|
2017-10-02 12:59:53 -07:00
|
|
|
#Required for ldap integration
|
|
|
|
setsebool -P httpd_can_connect_ldap on
|
|
|
|
#Sets SELinux context type so that scripts running in the web server process are allowed read/write access
|
|
|
|
chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
|
|
|
fi
|
|
|
|
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "* Setting Apache httpd to start on boot and starting service."
|
|
|
|
log "systemctl enable httpd.service"
|
2017-10-05 21:27:00 -07:00
|
|
|
log "systemctl restart httpd.service"
|
2017-10-02 12:59:53 -07:00
|
|
|
|
|
|
|
else
|
2017-10-06 22:58:41 -07:00
|
|
|
echo "Unsupported CentOS version. Version found: " $version
|
2017-10-02 12:59:53 -07:00
|
|
|
return 1
|
|
|
|
fi
|
2016-03-25 01:18:05 -07:00
|
|
|
esac
|
|
|
|
|
2017-10-05 21:27:00 -07:00
|
|
|
setupmail=default
|
|
|
|
until [[ $setupmail == "yes" ]] || [[ $setupmail == "no" ]]; do
|
|
|
|
echo -n " Q. Do you want to configure mail server settings? (y/n) "
|
|
|
|
read setupmail
|
|
|
|
|
|
|
|
case $setupmail in
|
|
|
|
[yY] | [yY][Ee][Ss] )
|
|
|
|
echo -n " Outgoing mailserver address:"
|
|
|
|
read mailhost
|
|
|
|
sed -i 's,^\(MAIL_HOST=\).*,\1'$mailhost',' $webdir/$name/.env
|
|
|
|
|
|
|
|
echo -n " Server port number:"
|
|
|
|
read mailport
|
|
|
|
sed -i 's,^\(MAIL_PORT=\).*,\1'$mailport',' $webdir/$name/.env
|
|
|
|
|
|
|
|
echo -n " Username:"
|
|
|
|
read mailusername
|
|
|
|
sed -i 's,^\(MAIL_USERNAME=\).*,\1'$mailusername',' $webdir/$name/.env
|
|
|
|
|
|
|
|
echo -n " Password:"
|
|
|
|
read mailpassword
|
|
|
|
sed -i 's,^\(MAIL_PASSWORD=\).*,\1'$mailpassword',' $webdir/$name/.env
|
|
|
|
|
|
|
|
echo -n " Encryption(null/TLS/SSL):"
|
|
|
|
read mailencryption
|
|
|
|
sed -i 's,^\(MAIL_ENCRYPTION=\).*,\1'$mailencryption',' $webdir/$name/.env
|
|
|
|
|
|
|
|
echo -n " From address:"
|
|
|
|
read mailfromaddr
|
|
|
|
sed -i 's,^\(MAIL_FROM_ADDR=\).*,\1'$mailfromaddr',' $webdir/$name/.env
|
|
|
|
|
|
|
|
echo -n " From name:"
|
|
|
|
read mailfromname
|
|
|
|
sed -i 's,^\(MAIL_FROM_NAME=\).*,\1'$mailfromname',' $webdir/$name/.env
|
|
|
|
|
|
|
|
echo -n " Reply to address:"
|
|
|
|
read mailreplytoaddr
|
|
|
|
sed -i 's,^\(MAIL_REPLYTO_ADDR=\).*,\1'$mailreplytoaddr',' $webdir/$name/.env
|
|
|
|
|
|
|
|
echo -n " Reply to name:"
|
|
|
|
read mailreplytoname
|
|
|
|
sed -i 's,^\(MAIL_REPLYTO_NAME=\).*,\1'$mailreplytoname',' $webdir/$name/.env
|
|
|
|
setupmail="yes"
|
|
|
|
;;
|
|
|
|
[nN] | [n|N][O|o] )
|
|
|
|
setupmail="no"
|
|
|
|
;;
|
|
|
|
*) echo " Invalid answer. Please type y or n"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
echo ""
|
|
|
|
echo " ***Open http://$fqdn to login to Snipe-IT.***"
|
|
|
|
echo ""
|
|
|
|
echo ""
|
2016-09-29 22:37:05 -07:00
|
|
|
echo "* Cleaning up..."
|
2016-03-25 01:18:05 -07:00
|
|
|
rm -f snipeit.sh
|
|
|
|
rm -f install.sh
|
2016-09-29 22:37:05 -07:00
|
|
|
echo "* Finished!"
|
2017-10-05 21:27:00 -07:00
|
|
|
sleep 1
|