2015-04-28 17:32:31 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Retrieve arguments
|
|
|
|
domain=$(sudo yunohost app setting spip domain)
|
|
|
|
path=$(sudo yunohost app setting spip path)
|
|
|
|
admin_spip=$(sudo yunohost app setting spip admin)
|
|
|
|
language=$(sudo yunohost app setting spip language)
|
|
|
|
is_public=$(sudo yunohost app setting spip is_public)
|
|
|
|
|
|
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
|
|
|
|
|
|
final_path=/var/www/spip
|
|
|
|
|
|
|
|
db_name=spip
|
|
|
|
|
|
|
|
# Check if admin is not null
|
|
|
|
if [[ "$admin_spip" = "" || "$is_public" = "" || "$language" = "" ]]; then
|
|
|
|
echo "Unable to upgrade, please contact support"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# 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*
|
|
|
|
|
|
|
|
if [ $is_public = "Yes" ];
|
|
|
|
then
|
|
|
|
sudo cp ../conf/nginx.conf-public /etc/nginx/conf.d/$domain.d/spip.conf
|
2015-04-28 18:46:07 +02:00
|
|
|
# grep -q "define('FORCE_SSL_ADMIN', true);" $final_path/wp-config.php
|
|
|
|
# if [[ ! $? -eq 0 ]];
|
|
|
|
# then
|
|
|
|
# echo "define('FORCE_SSL_ADMIN', true);" | sudo tee -a $final_path/config/connect.php
|
|
|
|
# else
|
|
|
|
# sudo sed -i "s@//define('FORCE_SSL_ADMIN@define('FORCE_SSL_ADMIN@g" $final_path/config/connect.php
|
|
|
|
# fi
|
2015-04-28 17:32:31 +02:00
|
|
|
else
|
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/spip.conf
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Reload Nginx
|
|
|
|
sudo service nginx reload
|