Apply PR #4133 to develop
This commit is contained in:
parent
7b10213b3a
commit
f442b70ae7
1 changed files with 144 additions and 99 deletions
243
snipeit.sh
243
snipeit.sh
|
@ -16,8 +16,14 @@
|
||||||
|
|
||||||
# ensure running as root
|
# ensure running as root
|
||||||
if [ "$(id -u)" != "0" ]; then
|
if [ "$(id -u)" != "0" ]; then
|
||||||
exec sudo "$0" "$@"
|
#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
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#First things first, let's set some variables and find our distro.
|
#First things first, let's set some variables and find our distro.
|
||||||
clear
|
clear
|
||||||
|
|
||||||
|
@ -26,16 +32,12 @@ hostname="$(hostname)"
|
||||||
fqdn="$(hostname --fqdn)"
|
fqdn="$(hostname --fqdn)"
|
||||||
ans=default
|
ans=default
|
||||||
hosts=/etc/hosts
|
hosts=/etc/hosts
|
||||||
tmp=/tmp/$name
|
|
||||||
|
|
||||||
spin[0]="-"
|
spin[0]="-"
|
||||||
spin[1]="\\"
|
spin[1]="\\"
|
||||||
spin[2]="|"
|
spin[2]="|"
|
||||||
spin[3]="/"
|
spin[3]="/"
|
||||||
|
|
||||||
rm -rf ${tmp:?}
|
|
||||||
mkdir $tmp
|
|
||||||
|
|
||||||
# Debian/Ubuntu friendly f(x)s
|
# Debian/Ubuntu friendly f(x)s
|
||||||
progress () {
|
progress () {
|
||||||
while kill -0 $pid > /dev/null 2>&1
|
while kill -0 $pid > /dev/null 2>&1
|
||||||
|
@ -48,7 +50,6 @@ progress () {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#Used for Debian and Ubuntu
|
#Used for Debian and Ubuntu
|
||||||
vhenvfile () {
|
vhenvfile () {
|
||||||
find /etc/apache2/mods-enabled -maxdepth 1 -name 'rewrite.load' >/dev/null 2>&1
|
find /etc/apache2/mods-enabled -maxdepth 1 -name 'rewrite.load' >/dev/null 2>&1
|
||||||
|
@ -124,7 +125,6 @@ else
|
||||||
distro="unsupported"
|
distro="unsupported"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
_____ _ __________
|
_____ _ __________
|
||||||
/ ___/____ (_)___ ___ / _/_ __/
|
/ ___/____ (_)___ ___ / _/_ __/
|
||||||
|
@ -134,7 +134,6 @@ echo "
|
||||||
/_/
|
/_/
|
||||||
"
|
"
|
||||||
|
|
||||||
echo ""
|
|
||||||
echo ""
|
echo ""
|
||||||
echo " Welcome to Snipe-IT Inventory Installer for Centos, Debian and Ubuntu!"
|
echo " Welcome to Snipe-IT Inventory Installer for Centos, Debian and Ubuntu!"
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -158,7 +157,6 @@ case $distro in
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
shopt -u nocasematch
|
shopt -u nocasematch
|
||||||
#Get your FQDN.
|
|
||||||
|
|
||||||
echo -n " Q. What is the FQDN of your server? ($fqdn): "
|
echo -n " Q. What is the FQDN of your server? ($fqdn): "
|
||||||
read fqdn
|
read fqdn
|
||||||
|
@ -168,7 +166,6 @@ fi
|
||||||
echo " Setting to $fqdn"
|
echo " Setting to $fqdn"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
#Do you want to set your own passwords, or have me generate random ones?
|
|
||||||
until [[ $ans == "yes" ]] || [[ $ans == "no" ]]; do
|
until [[ $ans == "yes" ]] || [[ $ans == "no" ]]; do
|
||||||
echo -n " Q. Do you want to automatically create the database user password? (y/n) "
|
echo -n " Q. Do you want to automatically create the database user password? (y/n) "
|
||||||
read setpw
|
read setpw
|
||||||
|
@ -189,71 +186,71 @@ case $setpw in
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
#Snipe says we need a new 32bit key, so let's create one randomly and inject it into the file
|
#TODO: Lets not install snipeit application under root
|
||||||
|
#TODO: Make progress tracker go on the same line of the step being run
|
||||||
#db_setup.sql will be injected to the database during install.
|
#TODO: Progress tracker on each step
|
||||||
#Again, this file should be removed, which will be a prompt at the end of the script.
|
|
||||||
dbsetup=$tmp/db_setup.sql
|
|
||||||
echo >> $dbsetup "CREATE DATABASE snipeit;"
|
|
||||||
echo >> $dbsetup "GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
|
||||||
|
|
||||||
#Let us make it so only root can read the file. Again, this isn't best practice, so please remove these after the install.
|
|
||||||
chown root:root $dbsetup
|
|
||||||
chmod 700 $dbsetup
|
|
||||||
|
|
||||||
## TODO: Progress tracker on each step
|
|
||||||
|
|
||||||
case $distro in
|
case $distro in
|
||||||
debian)
|
debian)
|
||||||
##################################### Install for Debian ##############################################
|
##################################### Install for Debian 9 ##############################################
|
||||||
#Update/upgrade Debian/Ubuntu repositories, get the latest version of git.
|
|
||||||
#Git clone snipeit, create vhost, edit hosts file, create .env file, mysql install
|
|
||||||
#composer install, set permissions, restart apache.
|
|
||||||
#BTW, Debian, I swear, you're such a pain.
|
|
||||||
|
|
||||||
webdir=/var/www
|
webdir=/var/www
|
||||||
echo -e "\n* Updating Debian packages in the background... ${spin[0]}\n"
|
|
||||||
apt-get update >> /var/log/snipeit-install.log & pid=$! 2>&1
|
echo "* Updating with apt-get update."
|
||||||
wait
|
log "apt-get update" & pid=$!
|
||||||
apt-get upgrade >> /var/log/snipeit-install.log & pid=$! 2>&1
|
|
||||||
wait
|
|
||||||
echo -e "\n* Installing packages... ${spin[0]}\n"
|
|
||||||
echo -e "\n* Going to suppress more messages that you don't need to worry about. Please wait... ${spin[0]}"
|
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get -y install mariadb-server mariadb-client apache2 git unzip php5 php5-mcrypt php5-curl php5-mysql php5-gd php5-ldap libapache2-mod-php5 curl >> /var/log/snipeit-install.log & pid=$! 2>&1
|
|
||||||
progress
|
progress
|
||||||
wait
|
|
||||||
echo -e "\n* Cloning Snipeit, extracting to $webdir/$name..."
|
echo "* Upgrading packages with apt-get upgrade."
|
||||||
git clone https://github.com/snipe/snipe-it $webdir/$name >> /var/log/snipeit-install.log & pid=$! 2>&1
|
log "apt-get -y upgrade" & pid=$!
|
||||||
progress
|
progress
|
||||||
php5enmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
|
||||||
a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
echo "* Installing httpd, PHP, MariaDB and other requirements."
|
||||||
|
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=$!
|
||||||
|
progress
|
||||||
|
|
||||||
|
log "a2enmod rewrite"
|
||||||
|
|
||||||
|
echo "* Cloning Snipe-IT from github to the web directory."
|
||||||
|
log "git clone https://github.com/snipe/snipe-it $webdir/$name" & pid=$!
|
||||||
|
progress
|
||||||
|
|
||||||
tzone=$(cat /etc/timezone)
|
tzone=$(cat /etc/timezone)
|
||||||
setenv
|
setenv
|
||||||
vhenvfile
|
vhenvfile
|
||||||
wait
|
wait
|
||||||
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
||||||
a2ensite $name.conf
|
a2ensite $name.conf
|
||||||
echo -e "* Modify the Snipe-It files necessary for a production environment.\n* Securing Mysql"
|
|
||||||
# Have user set own root password when securing install
|
echo "* Securing MariaDB server.";
|
||||||
# and just set the snipeit database user at the beginning
|
|
||||||
/usr/bin/mysql_secure_installation
|
/usr/bin/mysql_secure_installation
|
||||||
echo -e "* Creating Mysql Database and User.\n## Please Input your MySQL/MariaDB root password: "
|
|
||||||
mysql -u root -p < $dbsetup
|
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';"
|
||||||
|
|
||||||
|
echo "* Installing and running composer."
|
||||||
cd $webdir/$name/
|
cd $webdir/$name/
|
||||||
curl -sS https://getcomposer.org/installer | php
|
curl -sS https://getcomposer.org/installer | php
|
||||||
php composer.phar install --no-dev --prefer-source
|
php composer.phar install --no-dev --prefer-source
|
||||||
|
|
||||||
perms
|
perms
|
||||||
|
chown -R www-data:www-data "/var/www/$name"
|
||||||
|
|
||||||
service apache2 restart
|
service apache2 restart
|
||||||
php artisan key:generate
|
|
||||||
|
echo "* Generating the application key."
|
||||||
|
php artisan key:generate --force
|
||||||
|
|
||||||
|
echo "* Artisan Migrate."
|
||||||
|
php artisan migrate --force
|
||||||
;;
|
;;
|
||||||
ubuntu)
|
ubuntu)
|
||||||
##################################### Install for Ubuntu ##############################################
|
if [[ "$version" =~ 1[6-7] ]]; then
|
||||||
|
##################################### Install for Ubuntu 16-17 ##############################################
|
||||||
webdir=/var/www
|
webdir=/var/www
|
||||||
|
|
||||||
echo "* Adding MariaDB repository."
|
echo "* Adding MariaDB repository."
|
||||||
(echo "deb [arch=amd64,i386] http://ftp.hosteurope.de/mirror/mariadb.org/repo/10.1/ubuntu $codename main" | tee /etc/apt/sources.list.d/mariadb.list >/dev/null 2>&1)
|
|
||||||
log "apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8"
|
log "apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8"
|
||||||
|
log "add-apt-repository 'deb [arch=amd64,i386] http://nyc2.mirrors.digitalocean.com/mariadb/repo/10.1/ubuntu $codename main'"
|
||||||
|
|
||||||
echo "* Updating with apt-get update."
|
echo "* Updating with apt-get update."
|
||||||
log "apt-get update" & pid=$!
|
log "apt-get update" & pid=$!
|
||||||
|
@ -265,50 +262,41 @@ case $distro in
|
||||||
progress
|
progress
|
||||||
|
|
||||||
echo "* Installing httpd, PHP, MariaDB and other requirements."
|
echo "* Installing httpd, PHP, MariaDB and other requirements."
|
||||||
log "DEBIAN_FRONTEND=noninteractive apt-get install -y mariadb-server mariadb-client apache2 libapache2-mod-php curl git unzip" & pid=$!
|
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=$!
|
||||||
progress
|
progress
|
||||||
|
|
||||||
if [ "$version" == "16.04" ]; then
|
log "phpenmod mcrypt"
|
||||||
log "apt-get install -y php php-mcrypt php-curl php-mysql php-gd php-ldap php-zip php-mbstring php-xml php-bcmath" & pid=$!
|
log "phpenmod mbstring"
|
||||||
progress
|
log "a2enmod rewrite"
|
||||||
log "phpenmod mcrypt"
|
|
||||||
log "phpenmod mbstring"
|
|
||||||
log "a2enmod rewrite"
|
|
||||||
else
|
|
||||||
log "apt-get install -y php5 php5-mcrypt php5-curl php5-mysql php5-gd php5-ldap" & pid=$!
|
|
||||||
progress
|
|
||||||
log "php5enmod mcrypt"
|
|
||||||
log "a2enmod rewrite"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "* Cloning Snipe-IT from github to the web directory."
|
echo "* Cloning Snipe-IT from github to the web directory."
|
||||||
log "git clone https://github.com/snipe/snipe-it $webdir/$name" & pid=$!
|
log "git clone https://github.com/snipe/snipe-it $webdir/$name" & pid=$!
|
||||||
progress
|
progress
|
||||||
|
|
||||||
echo "* Configuring .env file."
|
echo "* Configuring .env file."
|
||||||
tzone=$(cat /etc/timezone)
|
tzone=$(cat /etc/timezone)
|
||||||
setenv
|
setenv
|
||||||
|
|
||||||
vhenvfile
|
vhenvfile
|
||||||
|
|
||||||
echo "* Starting the MariaDB server.";
|
echo "* Starting the MariaDB server.";
|
||||||
service mysql status >/dev/null || service mysql start
|
service mysql status >/dev/null || service mysql start
|
||||||
|
|
||||||
echo "* Securing MariaDB server.";
|
echo "* Securing MariaDB server.";
|
||||||
/usr/bin/mysql_secure_installation
|
/usr/bin/mysql_secure_installation
|
||||||
|
|
||||||
echo "* Creating MariaDB Database/User."
|
echo "* Creating MariaDB Database/User."
|
||||||
echo "* Please Input your MariaDB root password:"
|
echo "* Please Input your MariaDB root password:"
|
||||||
mysql -u root -p < $dbsetup
|
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
||||||
|
|
||||||
echo "* Installing and running composer."
|
echo "* Installing and running composer."
|
||||||
cd $webdir/$name/
|
cd $webdir/$name/
|
||||||
curl -sS https://getcomposer.org/installer | php
|
curl -sS https://getcomposer.org/installer | php
|
||||||
php composer.phar install --no-dev --prefer-source
|
php composer.phar install --no-dev --prefer-source
|
||||||
|
|
||||||
perms
|
perms
|
||||||
chown -R www-data:www-data "/var/www/$name"
|
chown -R www-data:www-data "/var/www/$name"
|
||||||
|
|
||||||
service apache2 restart
|
service apache2 restart
|
||||||
|
|
||||||
echo "* Generating the application key."
|
echo "* Generating the application key."
|
||||||
|
@ -316,14 +304,80 @@ case $distro in
|
||||||
|
|
||||||
echo "* Artisan Migrate."
|
echo "* Artisan Migrate."
|
||||||
php artisan migrate --force
|
php artisan migrate --force
|
||||||
;;
|
|
||||||
centos )
|
elif [[ "$version" =~ 14 ]]; then
|
||||||
|
##################################### Install for Ubuntu 14 ##############################################
|
||||||
|
webdir=/var/www
|
||||||
|
|
||||||
|
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=$!
|
||||||
|
[ -f /var/lib/dpkg/lock ] && rm -f /var/lib/dpkg/lock
|
||||||
|
progress
|
||||||
|
|
||||||
|
echo "* Upgrading packages with apt-get upgrade."
|
||||||
|
log "apt-get -y upgrade" & pid=$!
|
||||||
|
progress
|
||||||
|
|
||||||
|
echo "* Installing httpd, PHP, MariaDB and other requirements."
|
||||||
|
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"
|
||||||
|
|
||||||
|
echo "* Cloning Snipe-IT from github to the web directory."
|
||||||
|
log "git clone https://github.com/snipe/snipe-it $webdir/$name" & pid=$!
|
||||||
|
progress
|
||||||
|
|
||||||
|
echo "* Configuring .env file."
|
||||||
|
tzone=$(cat /etc/timezone)
|
||||||
|
setenv
|
||||||
|
|
||||||
|
vhenvfile
|
||||||
|
|
||||||
|
echo "* Starting the MariaDB server.";
|
||||||
|
service mysql status >/dev/null || service mysql start
|
||||||
|
|
||||||
|
echo "* Securing MariaDB server.";
|
||||||
|
/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';"
|
||||||
|
|
||||||
|
echo "* Installing and running composer."
|
||||||
|
cd $webdir/$name/
|
||||||
|
curl -sS https://getcomposer.org/installer | php
|
||||||
|
php composer.phar install --no-dev --prefer-source
|
||||||
|
|
||||||
|
perms
|
||||||
|
chown -R www-data:www-data "/var/www/$name"
|
||||||
|
|
||||||
|
service apache2 restart
|
||||||
|
|
||||||
|
echo "* Generating the application key."
|
||||||
|
php artisan key:generate --force
|
||||||
|
|
||||||
|
echo "* Artisan Migrate."
|
||||||
|
php artisan migrate --force
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "Unable to Handle Ubuntu Version #. Version Found: " $version
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
centos)
|
||||||
if [[ "$version" =~ ^6 ]]; then
|
if [[ "$version" =~ ^6 ]]; then
|
||||||
##################################### Install for Centos/Redhat 6 ##############################################
|
##################################### Install for Centos/Redhat 6 ##############################################
|
||||||
|
|
||||||
webdir=/var/www/html
|
webdir=/var/www/html
|
||||||
#Allow us to get the mysql engine
|
|
||||||
echo ""
|
|
||||||
echo "## Adding IUS, epel-release and MariaDB repositories.";
|
echo "## Adding IUS, epel-release and MariaDB repositories.";
|
||||||
mariadbRepo=/etc/yum.repos.d/MariaDB.repo
|
mariadbRepo=/etc/yum.repos.d/MariaDB.repo
|
||||||
touch "$mariadbRepo"
|
touch "$mariadbRepo"
|
||||||
|
@ -337,10 +391,9 @@ case $distro in
|
||||||
} >> "$mariadbRepo"
|
} >> "$mariadbRepo"
|
||||||
|
|
||||||
log "yum -y install wget epel-release"
|
log "yum -y install wget epel-release"
|
||||||
log "wget -P "$tmp/" https://centos6.iuscommunity.org/ius-release.rpm"
|
log "yum -y install https://centos6.iuscommunity.org/ius-release.rpm"
|
||||||
log "rpm -Uvh "$tmp/ius-release*.rpm""
|
log "rpm --import /etc/pki/rpm-gpg/IUS-COMMUNITY-GPG-KEY"
|
||||||
|
|
||||||
#Install PHP and other needed stuff
|
|
||||||
echo "## Installing httpd, PHP, MariaDB and other requirements.";
|
echo "## Installing httpd, PHP, MariaDB and other requirements.";
|
||||||
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"
|
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"
|
||||||
|
|
||||||
|
@ -368,7 +421,7 @@ case $distro in
|
||||||
|
|
||||||
echo "## Creating MariaDB Database/User."
|
echo "## Creating MariaDB Database/User."
|
||||||
echo "## Please Input your MariaDB root password: "
|
echo "## Please Input your MariaDB root password: "
|
||||||
mysql -u root -p < $dbsetup
|
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
||||||
|
|
||||||
#Create the new virtual host in Apache and enable rewrite
|
#Create the new virtual host in Apache and enable rewrite
|
||||||
echo "## Creating the new virtual host in Apache.";
|
echo "## Creating the new virtual host in Apache.";
|
||||||
|
@ -399,7 +452,7 @@ case $distro in
|
||||||
echo "## Starting the apache server.";
|
echo "## Starting the apache server.";
|
||||||
chkconfig httpd on
|
chkconfig httpd on
|
||||||
/sbin/service httpd start
|
/sbin/service httpd start
|
||||||
|
|
||||||
echo "## Configuring .env file."
|
echo "## Configuring .env file."
|
||||||
tzone=$(grep ZONE /etc/sysconfig/clock | tr -d '"' | sed 's/ZONE=//g');
|
tzone=$(grep ZONE /etc/sysconfig/clock | tr -d '"' | sed 's/ZONE=//g');
|
||||||
setenv
|
setenv
|
||||||
|
@ -422,7 +475,7 @@ case $distro in
|
||||||
fi
|
fi
|
||||||
|
|
||||||
service httpd restart
|
service httpd restart
|
||||||
|
|
||||||
echo "## Generating the application key."
|
echo "## Generating the application key."
|
||||||
php artisan key:generate --force
|
php artisan key:generate --force
|
||||||
|
|
||||||
|
@ -431,16 +484,13 @@ case $distro in
|
||||||
|
|
||||||
elif [[ "$version" =~ ^7 ]]; then
|
elif [[ "$version" =~ ^7 ]]; then
|
||||||
##################################### Install for Centos/Redhat 7 ##############################################
|
##################################### Install for Centos/Redhat 7 ##############################################
|
||||||
|
|
||||||
webdir=/var/www/html
|
webdir=/var/www/html
|
||||||
|
|
||||||
#Allow us to get the mysql engine
|
|
||||||
echo -e "\n## Adding IUS, epel-release and MariaDB repositories.";
|
echo -e "\n## Adding IUS, epel-release and MariaDB repositories.";
|
||||||
log "yum -y install wget epel-release"
|
log "yum -y install wget epel-release"
|
||||||
log "wget -P $tmp/ https://centos7.iuscommunity.org/ius-release.rpm"
|
log "yum -y install https://centos7.iuscommunity.org/ius-release.rpm"
|
||||||
log "rpm -Uvh $tmp/ius-release*.rpm"
|
log "rpm --import /etc/pki/rpm-gpg/IUS-COMMUNITY-GPG-KEY"
|
||||||
|
|
||||||
#Install PHP and other requirements
|
|
||||||
echo "## Installing httpd, PHP, MariaDB and other requirements.";
|
echo "## Installing httpd, PHP, MariaDB and other requirements.";
|
||||||
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"
|
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"
|
||||||
|
|
||||||
|
@ -455,25 +505,21 @@ case $distro in
|
||||||
done;
|
done;
|
||||||
|
|
||||||
echo -e "\n## Cloning Snipe-IT from github to the web directory.";
|
echo -e "\n## Cloning Snipe-IT from github to the web directory.";
|
||||||
|
|
||||||
log "git clone https://github.com/snipe/snipe-it $webdir/$name"
|
log "git clone https://github.com/snipe/snipe-it $webdir/$name"
|
||||||
|
|
||||||
# Make mariaDB start on boot and restart the daemon
|
#Make mariaDB start on boot and restart the daemon
|
||||||
echo "## Starting the MariaDB server.";
|
echo "## Starting the MariaDB server.";
|
||||||
systemctl enable mariadb.service
|
systemctl enable mariadb.service
|
||||||
systemctl start mariadb.service
|
systemctl start mariadb.service
|
||||||
|
|
||||||
echo "## Securing MariaDB server.";
|
echo "## Securing MariaDB server.";
|
||||||
echo "";
|
|
||||||
echo "";
|
|
||||||
/usr/bin/mysql_secure_installation
|
/usr/bin/mysql_secure_installation
|
||||||
|
|
||||||
echo "## Creating MariaDB Database/User."
|
echo "## Creating MariaDB Database/User."
|
||||||
echo "## Please Input your MariaDB root password "
|
echo "## Please Input your MariaDB root password "
|
||||||
mysql -u root -p < "$dbsetup"
|
mysql -u root -p --execute="CREATE DATABASE snipeit;GRANT ALL PRIVILEGES ON snipeit.* TO snipeit@localhost IDENTIFIED BY '$mysqluserpw';"
|
||||||
|
|
||||||
##TODO make sure the apachefile doesnt exist isnt already in there
|
|
||||||
|
|
||||||
|
#TODO make sure the apachefile doesnt exist isnt already in there
|
||||||
#Create the new virtual host in Apache and enable rewrite
|
#Create the new virtual host in Apache and enable rewrite
|
||||||
apachefile="/etc/httpd/conf.d/$name.conf"
|
apachefile="/etc/httpd/conf.d/$name.conf"
|
||||||
|
|
||||||
|
@ -497,7 +543,7 @@ case $distro in
|
||||||
echo "</VirtualHost>"
|
echo "</VirtualHost>"
|
||||||
} >> "$apachefile"
|
} >> "$apachefile"
|
||||||
|
|
||||||
##TODO make sure this isnt already in there
|
#TODO make sure this isnt already in there
|
||||||
echo "## Setting up hosts file.";
|
echo "## Setting up hosts file.";
|
||||||
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
||||||
|
|
||||||
|
@ -538,7 +584,7 @@ case $distro in
|
||||||
|
|
||||||
echo "## Creating scheduler cron."
|
echo "## Creating scheduler cron."
|
||||||
(crontab -l ; echo "* * * * * /usr/bin/php $webdir/$name/artisan schedule:run >> /dev/null 2>&1") | crontab -
|
(crontab -l ; echo "* * * * * /usr/bin/php $webdir/$name/artisan schedule:run >> /dev/null 2>&1") | crontab -
|
||||||
|
|
||||||
else
|
else
|
||||||
echo "Unable to Handle Centos Version #. Version Found: " $version
|
echo "Unable to Handle Centos Version #. Version Found: " $version
|
||||||
return 1
|
return 1
|
||||||
|
@ -554,6 +600,5 @@ echo ""
|
||||||
echo "* Cleaning up..."
|
echo "* Cleaning up..."
|
||||||
rm -f snipeit.sh
|
rm -f snipeit.sh
|
||||||
rm -f install.sh
|
rm -f install.sh
|
||||||
rm -rf ${tmp:?}
|
|
||||||
echo "* Finished!"
|
echo "* Finished!"
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue