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

90 lines
2.6 KiB
Text
Raw Normal View History

2015-03-07 13:58:05 +01:00
#!/bin/bash
app=phpBB
# Retrieve arguments
domain=$1
path=$2
is_public=$3
2015-03-08 00:44:31 +01:00
admin_login=$4
2015-03-08 00:30:38 +01:00
admin_pwd=$5
admin_email=$6
lang=$7
2015-03-07 13:58:05 +01:00
# Check domain/path availability
2015-03-07 14:39:51 +01:00
sudo yunohost app checkurl $domain$path -a $app
2015-03-07 13:58:05 +01:00
if [[ ! $? -eq 0 ]]; then
exit 1
fi
2015-03-07 14:27:36 +01:00
db_user=$app
2015-03-08 00:36:07 +01:00
#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-03-08 00:56:05 +01:00
db_pwd=$admin_pwd
2015-03-07 13:58:05 +01:00
# Initialize database and store mysql password for upgrade
2015-03-07 14:27:36 +01:00
sudo yunohost app initdb $db_user -p $db_pwd
sudo yunohost app setting $app mysqlpwd -v $db_pwd
2015-03-07 13:58:05 +01:00
# Copy files to the right place
final_path=/var/www/$app
sudo rm -rf $final_path
sudo mkdir -p $final_path
2015-03-07 14:55:18 +01:00
sudo cp -a ../sources/phpBB/* $final_path
2015-03-07 13:58:05 +01:00
2015-03-07 16:36:42 +01:00
# We add french language pack
2015-03-07 16:47:13 +01:00
sudo cp -a ../sources/french_language/* $final_path/
2015-03-07 13:58:05 +01:00
# Set permissions to rainloop directory
sudo chown -R www-data:www-data $final_path
2015-03-08 01:27:21 +01:00
# phpBB requires imagemagick to manipulate pictures
sudo apt-get update -qq > /dev/null 2>&1
sudo apt-get install -y imagemagick > /dev/null 2>&1
2015-03-08 00:30:38 +01:00
# Configuration of phpBB
2015-03-08 01:07:12 +01:00
# --data-urlencode "server_protocol=https://" \
2015-03-08 00:52:14 +01:00
curl -k -X POST \
2015-03-08 00:30:38 +01:00
-H "Host: $domain" \
--data-urlencode "dbms=mysqli" \
--data-urlencode "dbhost=localhost" \
--data-urlencode "dbname=$db_user" \
--data-urlencode "dbuser=$db_user" \
--data-urlencode "dbpasswd=$db_pwd" \
2015-03-08 01:07:12 +01:00
--data-urlencode "default_lang=$lang" \
2015-03-08 00:44:31 +01:00
--data-urlencode "admin_name=$admin_login" \
2015-03-08 00:30:38 +01:00
--data-urlencode "admin_pass1=$admin_pwd" \
--data-urlencode "admin_pass2=$admin_pwd" \
--data-urlencode "board_email=$admin_email" \
--data-urlencode "server_name=$domain" \
--data-urlencode "server_port=443" \
--data-urlencode "script_path=$path" \
--data-urlencode "submit=next" \
2015-03-08 01:00:09 +01:00
"https://127.0.0.1$path/install/index.php?mode=install&sub=create_table" > /dev/null 2>&1
2015-03-08 00:30:38 +01:00
# We need to rename the install folder
2015-03-08 00:40:38 +01:00
#sudo mv $final_path/install $final_path/install_old
2015-03-08 00:30:38 +01:00
2015-03-07 13:58:05 +01:00
# 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/$app.conf
sed -i "s@NAMETOCHANGE@$app@g" ../conf/php-fpm.conf
finalphpconf=/etc/php5/fpm/pool.d/$app.conf
sudo cp ../conf/php-fpm.conf $finalphpconf
sudo chown root: $finalphpconf
sudo chmod 644 $finalphpconf
# Make app public if necessary
2015-03-07 15:13:47 +01:00
sudo yunohost app setting $app is_public -v "$is_public"
2015-03-07 13:58:05 +01:00
if [ "$is_public" = "Yes" ];
then
2015-03-07 15:13:47 +01:00
sudo yunohost app setting $app skipped_uris -v "/"
2015-03-07 13:58:05 +01:00
fi
# Reload Nginx and regenerate SSOwat conf
sudo service php5-fpm reload
sudo service nginx reload
sudo yunohost app ssowatconf