1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/grav_ynh.git synced 2024-09-03 19:16:01 +02:00
grav_ynh/scripts/install

46 lines
1.2 KiB
Text
Raw Normal View History

2015-11-11 18:03:16 +01:00
#!/bin/bash
# Retrieve arguments
domain=$1
path=$2
admin_grav=$3
# Check if admin exists
sudo yunohost user list --json | grep -q "\"username\": \"$admin_grav\""
if [[ ! $? -eq 0 ]]; then
echo "Wrong admin"
exit 1
fi
sudo yunohost app setting grav admin -v $admin_grav
# Check domain/path availability
sudo yunohost app checkurl $domain$path -a grav
if [[ ! $? -eq 0 ]]; then
exit 1
fi
# Copy files to the right place
final_path=/var/www/grav
sudo mkdir -p $final_path
2015-11-11 18:55:34 +01:00
sudo cp -aR ../src/* $final_path
2015-11-11 18:03:16 +01:00
# Set permissions to roundcube directory
sudo chown -R www-data: $final_path
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
sed -i "s@ALIASTOCHANGE@$final_path@g" ../conf/nginx.conf
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/grav.conf
sed -i "s@NAMETOCHANGE@grav@g" ../conf/php-fpm.conf
finalphpconf=/etc/php5/fpm/pool.d/grav.conf
sudo cp ../conf/php-fpm.conf $finalphpconf
sudo chown root: $finalphpconf
sudo chmod 644 $finalphpconf
2015-11-11 20:42:41 +01:00
# sudo $final_path/bin/grav install
2015-11-11 18:03:16 +01:00
# Reload Nginx and regenerate SSOwat conf
sudo service php5-fpm restart
sudo service nginx reload
sudo yunohost app setting grav skipped_uris -v "/"
sudo yunohost app ssowatconf