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

Update of remove and upgrade scripts

This commit is contained in:
polytan02 2015-03-07 14:08:41 +00:00
parent 10c360e188
commit c36216d4ca
2 changed files with 12 additions and 25 deletions

View file

@ -7,7 +7,7 @@ db_name=$app
root_pwd=$(sudo cat /etc/yunohost/mysql) root_pwd=$(sudo cat /etc/yunohost/mysql)
domain=$(sudo yunohost app setting $app domain) domain=$(sudo yunohost app setting $app domain)
# Remember to keep $root_pwd without a gap to -p otherwise it doesn't work # Remember to keep $root_pwd without a gap with -p otherwise it doesn't work
mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;" mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
sudo rm -rf /var/www/$app sudo rm -rf /var/www/$app
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf

View file

@ -5,37 +5,24 @@ app=phpBB
# Retrieve arguments # Retrieve arguments
domain=$(sudo yunohost app setting $app domain) domain=$(sudo yunohost app setting $app domain)
path=$(sudo yunohost app setting $app path) path=$(sudo yunohost app setting $app path)
final_path=/var/www/$app
is_public=$(sudo yunohost app setting $app is_public) is_public=$(sudo yunohost app setting $app is_public)
#db_pwd=$(sudo yunohost app setting $app mysqlpwd)
#db_user=$app
# Cleaning before reinstallation
# Check domain/path availability #mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
#sudo yunohost app checkurl $domain$path -a rainloop sudo rm -rf $final_path
#if [[ ! $? -eq 0 ]]; then sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
# exit 1 sudo rm -f /etc/php5/fpm/pool.d/$app.conf
#fi
# Generate random DES key & password
#deskey=$(dd if=/dev/urandom bs=1 count=200 2> /dev/null | tr -c -d 'A-Za-z0-9' | sed -n 's/\(.\{24\}\).*/\1/p')
#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')
# Use 'rainloop' as database name and user
#db_user=rainloop
# Initialize database and store mysql password for upgrade # Initialize database and store mysql password for upgrade
#sudo yunohost app initdb $db_user -p $db_pwd -s $(readlink -e ../sources/SQL/mysql.initial.sql) #sudo yunohost app initdb $db_user -p $db_pwd
#sudo yunohost app setting rainloop mysqlpwd -v $db_pwd
#mysql -u $db_user -p$db_pwd $db_user < ../sources/plugins/automatic_addressbook/SQL/mysql.initial.sql sudo mkdir -p $final_path
# Copy files to the right place
final_path=/var/www/$app
sudo rm -rf $final_path/*
#sudo mkdir -p $final_path
sudo cp -a ../sources/$app/* $final_path sudo cp -a ../sources/$app/* $final_path
# Set permissions to $final_path directory
# Set permissions to rainloop directory
# sudo mkdir -p $final_path/logs
sudo chown -R www-data:www-data $final_path sudo chown -R www-data:www-data $final_path
# Modify Nginx configuration file and copy it to Nginx conf directory # Modify Nginx configuration file and copy it to Nginx conf directory