mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 05:34:06 -08:00
Apologies. Still learning Git, and CentOS isn't a big strength for me. (#2701)
This should properly include #2674 Cleaned up the script itself, added progress bars so end users don't think the script is stuck
This commit is contained in:
parent
b92d26f3c4
commit
c6338d6a8b
307
snipeit.sh
307
snipeit.sh
|
@ -39,7 +39,7 @@ spin[3]="/"
|
||||||
rm -rf $tmp/
|
rm -rf $tmp/
|
||||||
mkdir $tmp
|
mkdir $tmp
|
||||||
|
|
||||||
# Debian/Ubuntu friendly f(x)
|
# Debian/Ubuntu friendly f(x)s
|
||||||
progress () {
|
progress () {
|
||||||
while kill -0 $pid > /dev/null 2>&1
|
while kill -0 $pid > /dev/null 2>&1
|
||||||
do
|
do
|
||||||
|
@ -49,13 +49,59 @@ progress () {
|
||||||
echo -ne "\b$i"
|
echo -ne "\b$i"
|
||||||
sleep .1
|
sleep .1
|
||||||
else
|
else
|
||||||
echo -ne "\n\n"
|
echo -ne "\n\b\n"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
vhenvfile () {
|
||||||
|
sudo ls -al /etc/apache2/mods-enabled/rewrite.load >> /var/log/snipeit-install.log 2>&1
|
||||||
|
apachefile=/etc/apache2/sites-available/$name.conf
|
||||||
|
echo "* Create Virtual host for apache."
|
||||||
|
echo >> $apachefile "<VirtualHost *:80>"
|
||||||
|
echo >> $apachefile "ServerAdmin webmaster@localhost"
|
||||||
|
echo >> $apachefile " <Directory $webdir/$name/public>"
|
||||||
|
echo >> $apachefile " Require all granted"
|
||||||
|
echo >> $apachefile " AllowOverride All"
|
||||||
|
echo >> $apachefile " </Directory>"
|
||||||
|
echo >> $apachefile " DocumentRoot $webdir/$name/public"
|
||||||
|
echo >> $apachefile " ServerName $fqdn"
|
||||||
|
echo >> $apachefile " ErrorLog /var/log/apache2/snipeIT.error.log"
|
||||||
|
echo >> $apachefile " CustomLog /var/log/apache2/access.log combined"
|
||||||
|
echo >> $apachefile "</VirtualHost>"
|
||||||
|
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
||||||
|
a2ensite $name.conf >> /var/log/snipeit-install.log 2>&1
|
||||||
|
|
||||||
|
cat > $webdir/$name/.env <<-EOF
|
||||||
|
#Created By Snipe-it Installer
|
||||||
|
APP_TIMEZONE=$(cat /etc/timezone)
|
||||||
|
DB_HOST=localhost
|
||||||
|
DB_DATABASE=snipeit
|
||||||
|
DB_USERNAME=snipeit
|
||||||
|
DB_PASSWORD=$mysqluserpw
|
||||||
|
APP_URL=http://$fqdn
|
||||||
|
APP_KEY=$random32
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
perms () {
|
||||||
|
if [ $distro == "debian" ]; then
|
||||||
|
#Change permissions on directories
|
||||||
|
chmod -R 755 $webdir/$name/storage
|
||||||
|
chmod -R 755 $webdir/$name/storage/private_uploads
|
||||||
|
chmod -R 755 $webdir/$name/public/uploads
|
||||||
|
chown -R www-data:www-data /var/www/$name
|
||||||
|
# echo "* Finished permission changes."
|
||||||
|
else
|
||||||
|
sudo chmod -R 755 $webdir/$name/storage
|
||||||
|
sudo chmod -R 755 $webdir/$name/storage/private_uploads
|
||||||
|
sudo chmod -R 755 $webdir/$name/public/uploads
|
||||||
|
sudo chown -R www-data:www-data /var/www/$name
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
#CentOS Friendly f(x)s
|
||||||
function isinstalled {
|
function isinstalled {
|
||||||
if yum list installed "$@" >/dev/null 2>&1; then
|
if yum list installed "$@" >/dev/null 2>&1; then
|
||||||
true
|
true
|
||||||
|
@ -92,7 +138,7 @@ echo "
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo ""
|
echo ""
|
||||||
echo " Welcome to Snipe-IT Inventory Installer for Centos and Debian!"
|
echo " Welcome to Snipe-IT Inventory Installer for Centos, Debian and Ubuntu!"
|
||||||
echo ""
|
echo ""
|
||||||
shopt -s nocasematch
|
shopt -s nocasematch
|
||||||
case $distro in
|
case $distro in
|
||||||
|
@ -163,218 +209,85 @@ chmod 700 $dbsetup
|
||||||
case $distro in
|
case $distro in
|
||||||
debian)
|
debian)
|
||||||
##################################### Install for Debian ##############################################
|
##################################### Install for Debian ##############################################
|
||||||
|
#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"
|
||||||
#Update/upgrade Debian repositories.
|
apt-get update >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
echo ""
|
wait
|
||||||
echo "## Updating Debian packages in the background. Please be patient."
|
apt-get upgrade >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
echo ""
|
wait
|
||||||
apachefile=/etc/apache2/sites-available/$name.conf
|
echo -e "\n* Installing packages... ${spin[0]}\n"
|
||||||
sudo apt-get update >> /var/log/snipeit-install.log & pid=$! 2>&1
|
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
|
||||||
sudo apt-get -y upgrade >> /var/log/snipeit-install.log & pid=$! 2>&1
|
wait
|
||||||
|
echo -e "\n* Cloning Snipeit, extracting to $webdir/$name..."
|
||||||
|
git clone https://github.com/snipe/snipe-it $webdir/$name >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
progress
|
progress
|
||||||
echo "## Installing packages."
|
php5enmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
||||||
sudo apt-get -y install mariadb-server mariadb-client
|
a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
||||||
echo "## Going to suppress more messages that you don't need to worry about. Please wait."
|
vhenvfile
|
||||||
sudo apt-get -y install apache2 >> /var/log/snipeit-install.log & pid=$! 2>&1
|
wait
|
||||||
progress
|
|
||||||
sudo apt-get install -y 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
|
|
||||||
|
|
||||||
# Get files and extract to web dir
|
|
||||||
echo ""
|
|
||||||
echo "## Downloading snipeit and extract to web directory."
|
|
||||||
wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file
|
|
||||||
unzip -qo $tmp/$file -d $tmp/
|
|
||||||
cp -R $tmp/$fileName $webdir/$name
|
|
||||||
|
|
||||||
## TODO make sure apache is set to start on boot and go ahead and start it
|
|
||||||
|
|
||||||
#Enable mcrypt and rewrite
|
|
||||||
echo "## Enabling mcrypt and rewrite"
|
|
||||||
|
|
||||||
sudo php5enmod mcrypt
|
|
||||||
sudo a2enmod rewrite
|
|
||||||
|
|
||||||
#Create a new virtual host for Apache.
|
|
||||||
echo "## Create Virtual host for apache."
|
|
||||||
echo >> $apachefile ""
|
|
||||||
echo >> $apachefile ""
|
|
||||||
echo >> $apachefile "<VirtualHost *:80>"
|
|
||||||
echo >> $apachefile "ServerAdmin webmaster@localhost"
|
|
||||||
echo >> $apachefile " <Directory $webdir/$name/public>"
|
|
||||||
echo >> $apachefile " Require all granted"
|
|
||||||
echo >> $apachefile " AllowOverride All"
|
|
||||||
echo >> $apachefile " </Directory>"
|
|
||||||
echo >> $apachefile " DocumentRoot $webdir/$name/public"
|
|
||||||
echo >> $apachefile " ServerName $fqdn"
|
|
||||||
echo >> $apachefile " ErrorLog /var/log/apache2/snipeIT.error.log"
|
|
||||||
echo >> $apachefile " CustomLog /var/log/apache2/access.log combined"
|
|
||||||
echo >> $apachefile "</VirtualHost>"
|
|
||||||
|
|
||||||
|
|
||||||
echo "## Configuring .env file."
|
|
||||||
cat > $webdir/$name/.env <<-EOF
|
|
||||||
#Created By Snipe-it Installer
|
|
||||||
APP_TIMEZONE=$(cat /etc/timezone)
|
|
||||||
DB_HOST=localhost
|
|
||||||
DB_DATABASE=snipeit
|
|
||||||
DB_USERNAME=snipeit
|
|
||||||
DB_PASSWORD=$mysqluserpw
|
|
||||||
APP_URL=http://$fqdn
|
|
||||||
APP_KEY=$random32
|
|
||||||
DB_DUMP_PATH='/usr/bin'
|
|
||||||
EOF
|
|
||||||
|
|
||||||
echo "## Setting up hosts file."
|
|
||||||
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"
|
||||||
#Modify the Snipe-It files necessary for a production environment.
|
|
||||||
echo "## Modify the Snipe-It files necessary for a production environment."
|
|
||||||
echo "## Securing Mysql"
|
|
||||||
# Have user set own root password when securing install
|
# Have user set own root password when securing install
|
||||||
# and just set the snipeit database user at the beginning
|
# 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: "
|
||||||
## TODO make sure mysql is set to start on boot and go ahead and start it
|
|
||||||
|
|
||||||
echo "Creating Mysql Database and User."
|
|
||||||
echo "## Please Input your MySQL/MariaDB root password: "
|
|
||||||
echo ""
|
|
||||||
mysql -u root -p < $dbsetup
|
mysql -u root -p < $dbsetup
|
||||||
echo ""
|
|
||||||
|
|
||||||
#Install / configure composer
|
|
||||||
echo "## Installing and configuring 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
|
||||||
#Change permissions on directories
|
|
||||||
echo "## Seting permissions on web directory."
|
|
||||||
sudo chmod -R 755 $webdir/$name/storage
|
|
||||||
sudo chmod -R 755 $webdir/$name/storage/private_uploads
|
|
||||||
sudo chmod -R 755 $webdir/$name/public/uploads
|
|
||||||
sudo chown -R www-data:www-data /var/www/
|
|
||||||
# echo "## Finished permission changes."
|
|
||||||
|
|
||||||
echo "## Restarting apache."
|
|
||||||
service apache2 restart
|
service apache2 restart
|
||||||
;;
|
;;
|
||||||
|
|
||||||
ubuntu)
|
ubuntu)
|
||||||
##################################### Install for Ubuntu ##############################################
|
##################################### Install for Ubuntu ##############################################
|
||||||
|
#Update/upgrade Debian/Ubuntu repositories, get the latest version of git.
|
||||||
|
#Git clone snipeit, create vhost, .env file, mysql install
|
||||||
|
#composer install, set permissions, restart apache.
|
||||||
|
|
||||||
webdir=/var/www
|
webdir=/var/www
|
||||||
|
echo -ne "\n* Updating with apt-get update in the background... ${spin[0]}"
|
||||||
#Update/upgrade Debian/Ubuntu repositories, get the latest version of git.
|
|
||||||
echo ""
|
|
||||||
echo "## Updating ubuntu in the background. Please be patient."
|
|
||||||
echo ""
|
|
||||||
echo -n "Updating with apt-get update... ${spin[0]}"
|
|
||||||
sudo apt-get update >> /var/log/snipeit-install.log & pid=$! 2>&1
|
sudo apt-get update >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
|
rm /var/lib/dpkg/lock
|
||||||
progress
|
progress
|
||||||
echo -n "Upgrading packages with apt-get upgrade... ${spin[0]}"
|
echo -ne "\n* Upgrading packages with apt-get upgrade in the background... ${spin[0]}"
|
||||||
sudo apt-get -y upgrade >> /var/log/snipeit-install.log & pid=$! 2>&1
|
sudo apt-get -y upgrade >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
progress
|
progress
|
||||||
apachefile=/etc/apache2/sites-available/$name.conf
|
echo -ne "\n* Setting up LAMP in the background... ${spin[0]}\n"
|
||||||
echo "## Installing packages."
|
|
||||||
|
|
||||||
#We already established MySQL root & user PWs, so we dont need to be prompted. Let's go ahead and install Apache, PHP and MySQL.
|
|
||||||
echo "## Setting up LAMP."
|
|
||||||
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y lamp-server^ >> /var/log/snipeit-install.log & pid=$! 2>&1
|
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y lamp-server^ >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
echo ""
|
|
||||||
progress
|
progress
|
||||||
if [ "$version" == "16.04" ]; then
|
if [ "$version" == "16.04" ]; then
|
||||||
sudo apt-get install -y git unzip php php-mcrypt php-curl php-mysql php-gd php-ldap php-zip php-mbstring php-xml >> /var/log/snipeit-install.log 2>&1
|
sudo apt-get install -y git unzip php php-mcrypt php-curl php-mysql php-gd php-ldap php-zip php-mbstring php-xml >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
sudo apt-get install -y git unzip php php-mcrypt php-curl php-mysql php-gd php-ldap php-xml php-zip php-mbstring >> /var/log/snipeit-install.log 2>&1
|
progress
|
||||||
#Enable mcrypt and rewrite
|
|
||||||
echo "## Enabling mcrypt and rewrite"
|
|
||||||
sudo phpenmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
sudo phpenmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
||||||
sudo phpenmod mbstring >> /var/log/snipeit-install 2>&1
|
sudo phpenmod mbstring >> /var/log/snipeit-install 2>&1
|
||||||
sudo a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
sudo a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
||||||
else
|
else
|
||||||
sudo apt-get install -y git unzip php5 php5-mcrypt php5-curl php5-mysql php5-gd php5-ldap >> /var/log/snipeit-install.log 2>&1
|
sudo apt-get install -y git unzip php5 php5-mcrypt php5-curl php5-mysql php5-gd php5-ldap >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
#Enable mcrypt and rewrite
|
progress
|
||||||
echo "## Enabling mcrypt and rewrite"
|
|
||||||
sudo php5enmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
sudo php5enmod mcrypt >> /var/log/snipeit-install.log 2>&1
|
||||||
sudo a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
sudo a2enmod rewrite >> /var/log/snipeit-install.log 2>&1
|
||||||
fi
|
fi
|
||||||
# Get files and extract to web dir
|
echo -ne "\n* Cloning Snipeit, extracting to $webdir/$name... ${spin[0]}"
|
||||||
echo ""
|
git clone https://github.com/snipe/snipe-it $webdir/$name >> /var/log/snipeit-install.log & pid=$! 2>&1
|
||||||
echo "## Downloading snipeit and extract to web directory."
|
progress
|
||||||
wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file >> /var/log/snipeit-install.log 2>&1
|
vhenvfile
|
||||||
unzip -qo $tmp/$file -d $tmp/
|
echo -e "* MySQL Phase next.\n"
|
||||||
cp -R $tmp/$fileName $webdir/$name
|
|
||||||
|
|
||||||
## TODO make sure apache is set to start on boot and go ahead and start it
|
|
||||||
|
|
||||||
sudo ls -al /etc/apache2/mods-enabled/rewrite.load >> /var/log/snipeit-install.log 2>&1
|
|
||||||
|
|
||||||
#Create a new virtual host for Apache.
|
|
||||||
echo "## Create Virtual host for apache."
|
|
||||||
echo >> $apachefile ""
|
|
||||||
echo >> $apachefile ""
|
|
||||||
echo >> $apachefile "<VirtualHost *:80>"
|
|
||||||
echo >> $apachefile "ServerAdmin webmaster@localhost"
|
|
||||||
echo >> $apachefile " <Directory $webdir/$name/public>"
|
|
||||||
echo >> $apachefile " Require all granted"
|
|
||||||
echo >> $apachefile " AllowOverride All"
|
|
||||||
echo >> $apachefile " </Directory>"
|
|
||||||
echo >> $apachefile " DocumentRoot $webdir/$name/public"
|
|
||||||
echo >> $apachefile " ServerName $fqdn"
|
|
||||||
echo >> $apachefile " ErrorLog /var/log/apache2/snipeIT.error.log"
|
|
||||||
echo >> $apachefile " CustomLog /var/log/apache2/access.log combined"
|
|
||||||
echo >> $apachefile "</VirtualHost>"
|
|
||||||
|
|
||||||
echo "## Setting up hosts file."
|
|
||||||
echo >> $hosts "127.0.0.1 $hostname $fqdn"
|
|
||||||
|
|
||||||
a2ensite $name.conf >> /var/log/snipeit-install.log
|
|
||||||
|
|
||||||
cat > $webdir/$name/.env <<-EOF
|
|
||||||
#Created By Snipe-it Installer
|
|
||||||
APP_TIMEZONE=$(cat /etc/timezone)
|
|
||||||
DB_HOST=localhost
|
|
||||||
DB_DATABASE=snipeit
|
|
||||||
DB_USERNAME=snipeit
|
|
||||||
DB_PASSWORD=$mysqluserpw
|
|
||||||
APP_URL=http://$fqdn
|
|
||||||
APP_KEY=$random32
|
|
||||||
DB_DUMP_PATH='/usr/bin'
|
|
||||||
EOF
|
|
||||||
|
|
||||||
## TODO make sure mysql is set to start on boot and go ahead and start it
|
|
||||||
echo "## MySQL Phase next."
|
|
||||||
# Setup Mysql, then run the command.
|
|
||||||
/usr/bin/mysql_secure_installation
|
/usr/bin/mysql_secure_installation
|
||||||
echo "## Creating MySQL Database and user. "
|
echo -e "* Creating MySQL Database and user.\n* Please Input your MySQL/MariaDB root password created in the previous step.: "
|
||||||
echo "## Please Input your MySQL/MariaDB root password: "
|
|
||||||
mysql -u root -p < $dbsetup
|
mysql -u root -p < $dbsetup
|
||||||
|
echo -e "\n* Securing Mysql\n* Installing and configuring composer"
|
||||||
echo "## Securing Mysql"
|
|
||||||
|
|
||||||
# Have user set own root password when securing install
|
|
||||||
# and just set the snipeit database user at the beginning
|
|
||||||
|
|
||||||
#Install / configure composer
|
|
||||||
echo "## Installing and configuring 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
|
||||||
#Change permissions on directories
|
|
||||||
echo "## Seting permissions on web directory."
|
|
||||||
sudo chmod -R 755 $webdir/$name/storage
|
|
||||||
sudo chmod -R 755 $webdir/$name/storage/private_uploads
|
|
||||||
sudo chmod -R 755 $webdir/$name/public/uploads
|
|
||||||
sudo chown -R www-data:www-data /var/www/$name
|
|
||||||
# echo "## Finished permission changes."
|
|
||||||
|
|
||||||
echo "## Restarting apache."
|
|
||||||
service apache2 restart
|
service apache2 restart
|
||||||
;;
|
;;
|
||||||
centos )
|
centos )
|
||||||
|
@ -382,9 +295,6 @@ case $distro in
|
||||||
##################################### Install for Centos/Redhat 6 ##############################################
|
##################################### Install for Centos/Redhat 6 ##############################################
|
||||||
|
|
||||||
webdir=/var/www/html
|
webdir=/var/www/html
|
||||||
|
|
||||||
##TODO make sure the repo doesnt exhist isnt already in there
|
|
||||||
|
|
||||||
#Allow us to get the mysql engine
|
#Allow us to get the mysql engine
|
||||||
echo ""
|
echo ""
|
||||||
echo "## Adding IUS, epel-release and mariaDB repos.";
|
echo "## Adding IUS, epel-release and mariaDB repos.";
|
||||||
|
@ -401,7 +311,6 @@ case $distro in
|
||||||
wget -P $tmp/ https://centos6.iuscommunity.org/ius-release.rpm >> /var/log/snipeit-install.log 2>&1
|
wget -P $tmp/ https://centos6.iuscommunity.org/ius-release.rpm >> /var/log/snipeit-install.log 2>&1
|
||||||
rpm -Uvh $tmp/ius-release*.rpm >> /var/log/snipeit-install.log 2>&1
|
rpm -Uvh $tmp/ius-release*.rpm >> /var/log/snipeit-install.log 2>&1
|
||||||
|
|
||||||
|
|
||||||
#Install PHP and other needed stuff.
|
#Install PHP and other needed stuff.
|
||||||
echo "## Installing PHP and other needed stuff";
|
echo "## Installing PHP and other needed stuff";
|
||||||
PACKAGES="httpd MariaDB-server git unzip php56u php56u-mysqlnd php56u-bcmath php56u-cli php56u-common php56u-embedded php56u-gd php56u-mbstring php56u-mcrypt php56u-ldap"
|
PACKAGES="httpd MariaDB-server git unzip php56u php56u-mysqlnd php56u-bcmath php56u-cli php56u-common php56u-embedded php56u-gd php56u-mbstring php56u-mcrypt php56u-ldap"
|
||||||
|
@ -416,8 +325,7 @@ case $distro in
|
||||||
fi
|
fi
|
||||||
done;
|
done;
|
||||||
|
|
||||||
echo ""
|
echo -e "\n## Downloading Snipe-IT from github and putting it in the web directory.";
|
||||||
echo "## Downloading Snipe-IT from github and putting it in the web directory.";
|
|
||||||
|
|
||||||
wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file >> /var/log/snipeit-install.log 2>&1
|
wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file >> /var/log/snipeit-install.log 2>&1
|
||||||
unzip -qo $tmp/$file -d $tmp/
|
unzip -qo $tmp/$file -d $tmp/
|
||||||
|
@ -435,7 +343,6 @@ case $distro in
|
||||||
echo "## Please Input your MySQL/MariaDB root password: "
|
echo "## Please Input your MySQL/MariaDB root password: "
|
||||||
mysql -u root -p < $dbsetup
|
mysql -u root -p < $dbsetup
|
||||||
|
|
||||||
##TODO make sure the apachefile doesnt exhist isnt already in there
|
|
||||||
#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.";
|
||||||
apachefile=/etc/httpd/conf.d/$name.conf
|
apachefile=/etc/httpd/conf.d/$name.conf
|
||||||
|
@ -456,7 +363,6 @@ case $distro in
|
||||||
echo >> $apachefile " CustomLog /var/log/access.log combined"
|
echo >> $apachefile " CustomLog /var/log/access.log combined"
|
||||||
echo >> $apachefile "</VirtualHost>"
|
echo >> $apachefile "</VirtualHost>"
|
||||||
|
|
||||||
##TODO make sure hosts file doesnt already contain this info
|
|
||||||
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"
|
||||||
|
|
||||||
|
@ -480,8 +386,6 @@ case $distro in
|
||||||
DB_DUMP_PATH='/usr/bin'
|
DB_DUMP_PATH='/usr/bin'
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
|
||||||
#Install / configure composer
|
|
||||||
echo "## Configure composer"
|
echo "## Configure composer"
|
||||||
cd $webdir/$name
|
cd $webdir/$name
|
||||||
curl -sS https://getcomposer.org/installer | php
|
curl -sS https://getcomposer.org/installer | php
|
||||||
|
@ -492,10 +396,6 @@ case $distro in
|
||||||
sudo chmod -R 755 $webdir/$name/public/uploads
|
sudo chmod -R 755 $webdir/$name/public/uploads
|
||||||
sudo chown -R apache:apache $webdir/$name
|
sudo chown -R apache:apache $webdir/$name
|
||||||
|
|
||||||
#TODO detect if SELinux is enabled to decide what to do.
|
|
||||||
# chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
|
||||||
|
|
||||||
#Check if iptables is running
|
|
||||||
/sbin/service iptables status >/dev/null 2>&1
|
/sbin/service iptables status >/dev/null 2>&1
|
||||||
if [ $? = 0 ]; then
|
if [ $? = 0 ]; then
|
||||||
#Open http/https port
|
#Open http/https port
|
||||||
|
@ -505,6 +405,7 @@ case $distro in
|
||||||
service iptables save
|
service iptables save
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
service httpd restart
|
service httpd restart
|
||||||
|
|
||||||
elif [ "$version" == "7" ]; then
|
elif [ "$version" == "7" ]; then
|
||||||
|
@ -513,8 +414,7 @@ case $distro in
|
||||||
webdir=/var/www/html
|
webdir=/var/www/html
|
||||||
|
|
||||||
#Allow us to get the mysql engine
|
#Allow us to get the mysql engine
|
||||||
echo ""
|
echo -e "\n## Add IUS, epel-release and mariaDB repos.";
|
||||||
echo "## Add IUS, epel-release and mariaDB repos.";
|
|
||||||
yum -y install wget epel-release >> /var/log/snipeit-install.log 2>&1
|
yum -y install wget epel-release >> /var/log/snipeit-install.log 2>&1
|
||||||
wget -P $tmp/ https://centos7.iuscommunity.org/ius-release.rpm >> /var/log/snipeit-install.log 2>&1
|
wget -P $tmp/ https://centos7.iuscommunity.org/ius-release.rpm >> /var/log/snipeit-install.log 2>&1
|
||||||
rpm -Uvh $tmp/ius-release*.rpm >> /var/log/snipeit-install.log 2>&1
|
rpm -Uvh $tmp/ius-release*.rpm >> /var/log/snipeit-install.log 2>&1
|
||||||
|
@ -533,8 +433,7 @@ case $distro in
|
||||||
fi
|
fi
|
||||||
done;
|
done;
|
||||||
|
|
||||||
echo ""
|
echo -e "\n## Downloading Snipe-IT from github and put it in the web directory.";
|
||||||
echo "## Downloading Snipe-IT from github and put it in the web directory.";
|
|
||||||
|
|
||||||
wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file >> /var/log/snipeit-install.log 2>&1
|
wget -P $tmp/ https://github.com/snipe/snipe-it/archive/$file >> /var/log/snipeit-install.log 2>&1
|
||||||
unzip -qo $tmp/$file -d $tmp/
|
unzip -qo $tmp/$file -d $tmp/
|
||||||
|
@ -554,7 +453,8 @@ case $distro in
|
||||||
echo "## Please Input your MySQL/MariaDB root password "
|
echo "## Please Input your MySQL/MariaDB root password "
|
||||||
mysql -u root -p < $dbsetup
|
mysql -u root -p < $dbsetup
|
||||||
|
|
||||||
##TODO make sure the apachefile doesnt exhist 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
|
||||||
|
|
||||||
|
@ -580,13 +480,11 @@ case $distro in
|
||||||
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"
|
||||||
|
|
||||||
|
|
||||||
echo "## Starting the apache server.";
|
echo "## Starting the apache server.";
|
||||||
# Make apache start on boot and restart the daemon
|
# Make apache start on boot and restart the daemon
|
||||||
systemctl enable httpd.service
|
systemctl enable httpd.service
|
||||||
systemctl restart httpd.service
|
systemctl restart httpd.service
|
||||||
|
|
||||||
|
|
||||||
tzone=$(timedatectl | gawk -F'[: ]' ' $9 ~ /zone/ {print $11}');
|
tzone=$(timedatectl | gawk -F'[: ]' ' $9 ~ /zone/ {print $11}');
|
||||||
echo "## Configuring .env file."
|
echo "## Configuring .env file."
|
||||||
|
|
||||||
|
@ -615,21 +513,18 @@ case $distro in
|
||||||
sudo chmod -R 755 $webdir/$name/storage/private_uploads
|
sudo chmod -R 755 $webdir/$name/storage/private_uploads
|
||||||
sudo chmod -R 755 $webdir/$name/public/uploads
|
sudo chmod -R 755 $webdir/$name/public/uploads
|
||||||
sudo chown -R apache:apache $webdir/$name
|
sudo chown -R apache:apache $webdir/$name
|
||||||
|
# Make SeLinux happy
|
||||||
|
sudo chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
||||||
|
|
||||||
#Check if SELinux is enforcing
|
#Check if SELinux is enforcing
|
||||||
if [ $(getenforce) == "Enforcing" ]; then
|
if [ $(getenforce) == "Enforcing" ]; then
|
||||||
|
#Add SELinux and firewall exception/rules.
|
||||||
#Required for ldap integration
|
#Required for ldap integration
|
||||||
setsebool -P httpd_can_connect_ldap on
|
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
|
#Sets SELinux context type so that scripts running in the web server process are allowed read/write access
|
||||||
sudo chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
sudo chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#TODO detect if firewall is enabled to decide what to do
|
|
||||||
#Add firewall exception/rules. Youll have to allow 443 if you want ssl connectivity.
|
|
||||||
# chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
|
|
||||||
# firewall-cmd --zone=public --add-port=80/tcp --permanent
|
|
||||||
# firewall-cmd --reload
|
|
||||||
|
|
||||||
systemctl restart httpd.service
|
systemctl restart httpd.service
|
||||||
|
|
||||||
else
|
else
|
||||||
|
@ -644,9 +539,9 @@ echo ""
|
||||||
echo " ***Open http://$fqdn to login to Snipe-IT.***"
|
echo " ***Open http://$fqdn to login to Snipe-IT.***"
|
||||||
echo ""
|
echo ""
|
||||||
echo ""
|
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/
|
rm -rf $tmp/
|
||||||
echo "## Done!"
|
echo "* Finished!"
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|
Loading…
Reference in a new issue