2015-04-28 17:54:25 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-04-28 17:05:35 +02:00
|
|
|
# Retrieve arguments
|
|
|
|
domain=$1
|
|
|
|
path=$2
|
2015-04-28 17:54:25 +02:00
|
|
|
admin_spip=$3
|
|
|
|
|
|
|
|
# Check if admin exists
|
|
|
|
sudo yunohost user list --json | grep -q "\"username\": \"$admin_spip\""
|
|
|
|
if [[ ! $? -eq 0 ]]; then
|
|
|
|
echo "Wrong admin"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
sudo yunohost app setting spip admin -v $admin_spip
|
2015-04-28 17:05:35 +02:00
|
|
|
|
|
|
|
# Check domain/path availability
|
|
|
|
sudo yunohost app checkurl $domain$path -a spip
|
|
|
|
if [[ ! $? -eq 0 ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Generate random DES key & password
|
|
|
|
db_pwd=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d '[A-Za-z0-9]' | sed -n 's/\(.\{24\}\).*/\1/p')
|
|
|
|
|
2015-04-28 17:54:25 +02:00
|
|
|
# Use 'spip' as database name and user
|
2015-04-28 17:05:35 +02:00
|
|
|
db_user=spip
|
|
|
|
|
|
|
|
# Initialize database and store mysql password for upgrade
|
|
|
|
sudo yunohost app initdb $db_user -p $db_pwd
|
|
|
|
sudo yunohost app setting spip mysqlpwd -v $db_pwd
|
|
|
|
|
2016-01-04 12:41:18 +01:00
|
|
|
# Download and extract files to the right place
|
|
|
|
final_path=/var/www
|
2016-08-29 16:55:20 +02:00
|
|
|
wget http://files.spip.org/spip/stable/spip-3.1.zip
|
|
|
|
unzip spip-3.1.zip -d $final_path
|
2015-04-28 17:05:35 +02:00
|
|
|
|
2016-01-04 12:41:18 +01:00
|
|
|
# Set permissions to spip directory
|
2015-04-28 17:05:35 +02:00
|
|
|
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
|
2015-04-28 19:58:18 +02:00
|
|
|
sed -i "s@ALIASTOCHANGE@$final_path@g" ../conf/nginx.conf
|
2015-04-28 17:05:35 +02:00
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/spip.conf
|
|
|
|
|
2015-04-28 18:46:07 +02:00
|
|
|
sed -i "s@NAMETOCHANGE@spip@g" ../conf/php-fpm.conf
|
|
|
|
finalphpconf=/etc/php5/fpm/pool.d/spip.conf
|
|
|
|
sudo cp ../conf/php-fpm.conf $finalphpconf
|
|
|
|
sudo chown root: $finalphpconf
|
|
|
|
sudo chmod 644 $finalphpconf
|
|
|
|
|
2015-04-28 17:05:35 +02:00
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
2015-04-28 18:46:07 +02:00
|
|
|
sudo service php5-fpm restart
|
2015-04-28 17:05:35 +02:00
|
|
|
sudo service nginx reload
|
2015-04-28 17:54:25 +02:00
|
|
|
sudo yunohost app setting spip skipped_uris -v "/"
|
2016-01-04 12:41:18 +01:00
|
|
|
sudo yunohost app ssowatconf
|