Fix installer for v3. Tested with centos7 and ubuntu 16.0.4.

This essentially just changes the configuration section to work with the
new .env file, and leaves almost everything else alone.  Some
reordering of code did occur to try and fix a number of issues I
encountered along the way.  This still really needs to be rewritten to
only run what it should as root, and not everything, but that should get
more testing than there is between now and v3.

One thing to note: This changes fetching master.zip to the v3 alpha2
tag, for obviousish reasons.  Once master goes back to v3, or there is a
way of downloading a v3 tarball on a regular basis, it should be changed
to do that again.
This commit is contained in:
Daniel Meltzer 2016-05-28 20:35:28 -05:00
parent c89f357e4a
commit d92de14413

View file

@ -27,8 +27,9 @@ hostname="$(hostname)"
fqdn="$(hostname --fqdn)" fqdn="$(hostname --fqdn)"
ans=default ans=default
hosts=/etc/hosts hosts=/etc/hosts
file=master.zip file=v3.0-alpha2.zip #CHANGE THIS WHEN MASTER IS V3 AGAIN
tmp=/tmp/$name tmp=/tmp/$name
fileName=snipe-it-3.0-alpha2
rm -rf $tmp/ rm -rf $tmp/
mkdir $tmp mkdir $tmp
@ -41,19 +42,16 @@ function isinstalled {
fi fi
} }
if [ -f /etc/lsb-release ]; then
distro="$(lsb_release -s -i )"
version="$(lsb_release -s -r)"
elif [ -f /etc/os-release ]; then
distro="$(. /etc/os-release && echo $ID $VERSION_ID)"
version="$(. /etc/os-release && echo $VERSION_ID)"
else
distro="unsupported"
fi
# Lets find what distro we are using and what version
distro=$(. /etc/os-release && echo $ID)
version=$(. /etc/os-release && echo $VERSION_ID)
# if grep -q centos <<<$distro; then
# for f in $(find /etc -type f -maxdepth 1 \( ! -wholename /etc/os-release ! -wholename /etc/lsb-release -wholename /etc/\*release -o -wholename /etc/\*version \) 2> /dev/null);
# do
# distro="${f:5:${#f}-13}"
# done;
# if [ "$distro" = "centos" ] || [ "$distro" = "redhat" ]; then
# distro+="$(rpm -q --qf "%{VERSION}" $(rpm -q --whatprovides redhat-release))"
# fi
# fi
echo " echo "
_____ _ __________ _____ _ __________
@ -153,26 +151,21 @@ case $distro in
echo "## Going to suppress more messages that you don't need to worry about. Please wait." echo "## Going to suppress more messages that you don't need to worry about. Please wait."
sudo apt-get -y install apache2 >> /var/log/snipeit-install.log 2>&1 sudo apt-get -y install apache2 >> /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 libapache2-mod-php5 curl >> /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 libapache2-mod-php5 curl >> /var/log/snipeit-install.log 2>&1
sudo service apache2 restart
#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 2>&1
# Get files and extract to web dir # Get files and extract to web dir
echo "" echo ""
echo "## Downloading snipeit and extract to web directory." echo "## Downloading snipeit and extract to 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/
cp -R $tmp/snipe-it-master $webdir/$name cp -R $tmp/$fileName $webdir/$name
## TODO make sure apache is set to start on boot and go ahead and start it ## TODO make sure apache is set to start on boot and go ahead and start it
#Enable mcrypt and rewrite #Enable mcrypt and rewrite
echo "## Enabling mcrypt and rewrite" 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
sudo ls -al /etc/apache2/mods-enabled/rewrite.load >> /var/log/snipeit-install.log 2>&1
#Create a new virtual host for Apache. #Create a new virtual host for Apache.
echo "## Create Virtual host for apache." echo "## Create Virtual host for apache."
@ -190,63 +183,52 @@ case $distro in
echo >> $apachefile " CustomLog /var/log/apache2/access.log combined" echo >> $apachefile " CustomLog /var/log/apache2/access.log combined"
echo >> $apachefile "</VirtualHost>" 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
EOF
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"
a2ensite $name.conf >> /var/log/snipeit-install.log 2>&1 a2ensite $name.conf >> /var/log/snipeit-install.log 2>&1
#Modify the Snipe-It files necessary for a production environment. #Modify the Snipe-It files necessary for a production environment.
echo "## Modify the Snipe-It files necessary for a production environment." echo "## Modify the Snipe-It files necessary for a production environment."
echo " Setting up Timezone."
tzone=$(cat /etc/timezone);
sed -i "s,UTC,$tzone,g" $webdir/$name/app/config/app.php
echo " Setting up bootstrap file."
sed -i "s,www.yourserver.com,$hostname,g" $webdir/$name/bootstrap/start.php
echo " Setting up database file."
cp $webdir/$name/app/config/production/database.example.php $webdir/$name/app/config/production/database.php
sed -i "s,snipeit_laravel,snipeit,g" $webdir/$name/app/config/production/database.php
sed -i "s,travis,snipeit,g" $webdir/$name/app/config/production/database.php
sed -i "s,password' => '',password' => '$mysqluserpw',g" $webdir/$name/app/config/production/database.php
echo " Setting up app file."
cp $webdir/$name/app/config/production/app.example.php $webdir/$name/app/config/production/app.php
sed -i "s,production.yourserver.com,$fqdn,g" $webdir/$name/app/config/production/app.php
sed -i "s,Change_this_key_or_snipe_will_get_ya,$random32,g" $webdir/$name/app/config/production/app.php
## from mtucker6784: Is there a particular reason we want end users to have debug mode on with a fresh install?
#sed -i "s,false,true,g" $webdir/$name/app/config/production/app.php
echo " Setting up mail file."
cp $webdir/$name/app/config/production/mail.example.php $webdir/$name/app/config/production/mail.php
## TODO make sure mysql is set to start on boot and go ahead and start it
#Change permissions on directories
echo "## Seting permissions on web directory."
sudo chmod -R 755 $webdir/$name/app/storage
sudo chmod -R 755 $webdir/$name/app/private_uploads
sudo chmod -R 755 $webdir/$name/public/uploads
sudo chown -R www-data:www-data /var/www/
# echo "## Finished permission changes."
echo "## Input your MySQL/MariaDB root password: "
echo ""
sudo mysql -u root -p < $dbsetup
echo ""
echo "## Securing Mysql" echo "## Securing Mysql"
echo "## I understand this is redundant. You don't need to change your root pw again if you don't want to."
# 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
## 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 ""
sudo mysql -u root -p < $dbsetup
echo ""
#Install / configure composer #Install / configure composer
echo "## Installing and configuring composer" echo "## Installing and configuring composer"
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
cd $webdir/$name/ cd $webdir/$name/
composer install --no-dev --prefer-source curl -sS https://getcomposer.org/installer | php
php artisan app:install --env=production php composer.phar install --no-dev --prefer-source
#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." echo "## Restarting apache."
service apache2 restart service apache2 restart
@ -264,7 +246,6 @@ case $distro in
apachefile=/etc/apache2/sites-available/$name.conf apachefile=/etc/apache2/sites-available/$name.conf
sudo apt-get update >> /var/log/snipeit-install.log 2>&1 sudo apt-get update >> /var/log/snipeit-install.log 2>&1
sudo apt-get -y upgrade >> /var/log/snipeit-install.log 2>&1 sudo apt-get -y upgrade >> /var/log/snipeit-install.log 2>&1
echo "## Installing packages." 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. #We already established MySQL root & user PWs, so we dont need to be prompted. Let's go ahead and install Apache, PHP and MySQL.
@ -284,13 +265,13 @@ case $distro in
echo "## Enabling mcrypt and rewrite" 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
# Get files and extract to web dir
fi fi
# Get files and extract to web dir
echo "" echo ""
echo "## Downloading snipeit and extract to web directory." echo "## Downloading snipeit and extract to 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/
cp -R $tmp/snipe-it-master $webdir/$name cp -R $tmp/$fileName $webdir/$name
## TODO make sure apache is set to start on boot and go ahead and start it ## TODO make sure apache is set to start on boot and go ahead and start it
@ -316,59 +297,46 @@ 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"
a2ensite $name.conf >> /var/log/snipeit-install.log 2>&1 a2ensite $name.conf >> /var/log/snipeit-install.log 2>&1
#Modify the Snipe-It files necessary for a production environment. cat > $webdir/$name/.env <<-EOF
echo "## Modify the Snipe-It files necessary for a production environment." #Created By Snipe-it Installer
echo " Setting up Timezone." APP_TIMEZONE=$(cat /etc/timezone)
tzone=$(cat /etc/timezone); DB_HOST=localhost
sed -i "s,UTC,$tzone,g" $webdir/$name/app/config/app.php DB_DATABASE=snipeit
DB_USERNAME=snipeit
echo " Setting up bootstrap file." DB_PASSWORD=$mysqluserpw
sed -i "s,www.yourserver.com,$hostname,g" $webdir/$name/bootstrap/start.php APP_URL=http://$fqdn
APP_KEY=$random32
echo " Setting up database file." EOF
cp $webdir/$name/app/config/production/database.example.php $webdir/$name/app/config/production/database.php
sed -i "s,snipeit_laravel,snipeit,g" $webdir/$name/app/config/production/database.php
sed -i "s,travis,snipeit,g" $webdir/$name/app/config/production/database.php
sed -i "s,password' => '',password' => '$mysqluserpw',g" $webdir/$name/app/config/production/database.php
echo " Setting up app file."
cp $webdir/$name/app/config/production/app.example.php $webdir/$name/app/config/production/app.php
sed -i "s,production.yourserver.com,$fqdn,g" $webdir/$name/app/config/production/app.php
sed -i "s,Change_this_key_or_snipe_will_get_ya,$random32,g" $webdir/$name/app/config/production/app.php
## from mtucker6784: Is there a particular reason we want end users to have debug mode on with a fresh install?
#sed -i "s,false,true,g" $webdir/$name/app/config/production/app.php
echo " Setting up mail file."
cp $webdir/$name/app/config/production/mail.example.php $webdir/$name/app/config/production/mail.php
## TODO make sure mysql is set to start on boot and go ahead and start it ## TODO make sure mysql is set to start on boot and go ahead and start it
#Change permissions on directories # Setup Mysql, then run the command.
echo "## Seting permissions on web directory." /usr/bin/mysql_secure_installation
sudo chmod -R 755 $webdir/$name/app/storage echo "## Creating MySQL Database and user. "
sudo chmod -R 755 $webdir/$name/app/private_uploads echo "## Please Input your MySQL/MariaDB root password: "
sudo chmod -R 755 $webdir/$name/public/uploads
sudo chown -R www-data:www-data /var/www/
# echo "## Finished permission changes."
echo "## Input your MySQL/MariaDB root password: "
sudo mysql -u root -p < $dbsetup sudo mysql -u root -p < $dbsetup
echo "## Securing Mysql" 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
#Install / configure composer #Install / configure composer
echo "## Installing and configuring composer" echo "## Installing and configuring composer"
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
cd $webdir/$name/ cd $webdir/$name/
composer install --no-dev --prefer-source curl -sS https://getcomposer.org/installer | php
php artisan app:install --env=production php composer.phar install --no-dev --prefer-source
#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." echo "## Restarting apache."
service apache2 restart service apache2 restart
@ -417,19 +385,20 @@ case $distro in
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/
cp -R $tmp/snipe-it-master $webdir/$name cp -R $tmp/$fileName $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.";
chkconfig mysql on chkconfig mysql on
/sbin/service mysql start /sbin/service mysql start
echo "## Input your MySQL/MariaDB root password: "
mysql -u root < $dbsetup
echo "## Securing mariaDB server."; echo "## Securing mariaDB server.";
/usr/bin/mysql_secure_installation /usr/bin/mysql_secure_installation
echo "## Creating MySQL Database/User."
echo "## Please Input your MySQL/MariaDB root password: "
mysql -u root < $dbsetup
##TODO make sure the apachefile doesnt exhist isnt already in there ##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.";
@ -461,36 +430,20 @@ case $distro in
chkconfig httpd on chkconfig httpd on
/sbin/service httpd start /sbin/service httpd start
#Modify the Snipe-It files necessary for a production environment.
echo "## Modifying the Snipe-It files necessary for a production environment."
echo " Setting up Timezone."
tzone=$(grep ZONE /etc/sysconfig/clock | tr -d '"' | sed 's/ZONE=//g'); tzone=$(grep ZONE /etc/sysconfig/clock | tr -d '"' | sed 's/ZONE=//g');
sed -i "s,UTC,$tzone,g" $webdir/$name/app/config/app.php echo "## Configuring .env file."
echo " Setting up bootstrap file." cat > $webdir/$name/.env <<-EOF
sed -i "s,www.yourserver.com,$hostname,g" $webdir/$name/bootstrap/start.php #Created By Snipe-it Installer
APP_TIMEZONE=$tzone
DB_HOST=localhost
DB_DATABASE=snipeit
DB_USERNAME=snipeit
DB_PASSWORD=$mysqluserpw
APP_URL=http://$fqdn
APP_KEY=$random32
EOF
echo " Setting up database file."
cp $webdir/$name/app/config/production/database.example.php $webdir/$name/app/config/production/database.php
sed -i "s,snipeit_laravel,snipeit,g" $webdir/$name/app/config/production/database.php
sed -i "s,travis,snipeit,g" $webdir/$name/app/config/production/database.php
sed -i "s,password' => '',password' => '$mysqluserpw',g" $webdir/$name/app/config/production/database.php
echo " Setting up app file."
cp $webdir/$name/app/config/production/app.example.php $webdir/$name/app/config/production/app.php
sed -i "s,production.yourserver.com,$fqdn,g" $webdir/$name/app/config/production/app.php
sed -i "s,Change_this_key_or_snipe_will_get_ya,$random32,g" $webdir/$name/app/config/production/app.php
## from mtucker6784: Is there a particular reason we want end users to have debug mode on with a fresh install?
#sed -i "s,false,true,g" $webdir/$name/app/config/production/app.php
echo " Setting up mail file."
cp $webdir/$name/app/config/production/mail.example.php $webdir/$name/app/config/production/mail.php
# Change permissions on directories
sudo chmod -R 755 $webdir/$name/app/storage
sudo chmod -R 755 $webdir/$name/app/private_uploads
sudo chmod -R 755 $webdir/$name/public/uploads
sudo chown -R apache:apache $webdir/$name
#Install / configure composer #Install / configure composer
echo "## Configure composer" echo "## Configure composer"
@ -501,6 +454,12 @@ case $distro in
echo "## Installing Snipe-IT" echo "## Installing Snipe-IT"
php artisan app:install --env=production php artisan app:install --env=production
# Change permissions on directories
sudo chmod -R 755 $webdir/$name/app/storage
sudo chmod -R 755 $webdir/$name/app/private_uploads
sudo chmod -R 755 $webdir/$name/public/uploads
sudo chown -R apache:apache $webdir/$name
#TODO detect if SELinux and firewall are enabled to decide what to do #TODO detect if SELinux and firewall are enabled to decide what to do
#Add SELinux and firewall exception/rules. Youll have to allow 443 if you want ssl connectivity. #Add SELinux and firewall exception/rules. Youll have to allow 443 if you want ssl connectivity.
# chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/ # chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
@ -541,21 +500,21 @@ case $distro in
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/
cp -R $tmp/snipe-it-master $webdir/$name cp -R $tmp/$fileName $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 "## Input your MySQL/MariaDB root password "
mysql -u root -p < $dbsetup
echo "## Securing mariaDB server."; echo "## Securing mariaDB server.";
echo ""; echo "";
echo ""; echo "";
/usr/bin/mysql_secure_installation /usr/bin/mysql_secure_installation
echo "## Creating MySQL Database/User."
echo "## Please Input your MySQL/MariaDB root password "
mysql -u root -p < $dbsetup
##TODO make sure the apachefile doesnt exhist isnt already in there ##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
@ -589,43 +548,37 @@ case $distro in
systemctl enable httpd.service systemctl enable httpd.service
systemctl restart httpd.service systemctl restart httpd.service
#Modify the Snipe-It files necessary for a production environment.
echo "## Modifying the Snipe-IT files necessary for a production environment."
echo " Setting up Timezone."
tzone=$(timedatectl | gawk -F'[: ]' ' $9 ~ /zone/ {print $11}'); tzone=$(timedatectl | gawk -F'[: ]' ' $9 ~ /zone/ {print $11}');
sed -i "s,UTC,$tzone,g" $webdir/$name/app/config/app.php echo "## Configuring .env file."
echo " Setting up bootstrap file." cat > $webdir/$name/.env <<-EOF
sed -i "s,www.yourserver.com,$hostname,g" $webdir/$name/bootstrap/start.php #Created By Snipe-it Installer
APP_TIMEZONE=$tzone
DB_HOST=localhost
DB_DATABASE=snipeit
DB_USERNAME=snipeit
DB_PASSWORD=$mysqluserpw
APP_URL=http://$fqdn
APP_KEY=$random32
echo " Setting up database file." EOF
cp $webdir/$name/app/config/production/database.example.php $webdir/$name/app/config/production/database.php
sed -i "s,snipeit_laravel,snipeit,g" $webdir/$name/app/config/production/database.php
sed -i "s,travis,snipeit,g" $webdir/$name/app/config/production/database.php
sed -i "s,password' => '',password' => '$mysqluserpw',g" $webdir/$name/app/config/production/database.php
echo " Setting up app file."
cp $webdir/$name/app/config/production/app.example.php $webdir/$name/app/config/production/app.php
sed -i "s,production.yourserver.com,$fqdn,g" $webdir/$name/app/config/production/app.php
sed -i "s,Change_this_key_or_snipe_will_get_ya,$random32,g" $webdir/$name/app/config/production/app.php
sed -i "s,false,true,g" $webdir/$name/app/config/production/app.php
echo " Setting up mail file."
cp $webdir/$name/app/config/production/mail.example.php $webdir/$name/app/config/production/mail.php
# Change permissions on directories # Change permissions on directories
sudo chmod -R 755 $webdir/$name/app/storage
sudo chmod -R 755 $webdir/$name/app/private_uploads
sudo chmod -R 755 $webdir/$name/public/uploads
sudo chown -R apache:apache $webdir/$name
#Install / configure composer #Install / configure 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
php artisan app:install --env=production
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 apache:apache $webdir/$name
# Make SeLinux happy
sudo chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
#TODO detect if SELinux and firewall are enabled to decide what to do #TODO detect if SELinux and firewall are enabled to decide what to do
#Add SELinux and firewall exception/rules. Youll have to allow 443 if you want ssl connectivity. #Add SELinux and firewall exception/rules. Youll have to allow 443 if you want ssl connectivity.
# chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/ # chcon -R -h -t httpd_sys_script_rw_t $webdir/$name/
@ -642,7 +595,7 @@ case $distro in
esac esac
echo "" echo ""
echo " ***If you want mail capabilities, open $webdir/$name/app/config/production/mail.php and fill out the attributes***" echo " ***If you want mail capabilities, edit $webdir/$name/.env and edit based on .env.example***"
echo "" echo ""
echo " ***Open http://$fqdn to login to Snipe-IT.***" echo " ***Open http://$fqdn to login to Snipe-IT.***"
echo "" echo ""