mirror of
https://github.com/YunoHost-Apps/rainloop_ynh.git
synced 2024-09-03 20:16:18 +02:00
Update of upgrade
This commit is contained in:
parent
04bc67a2c8
commit
29a9ad8033
2 changed files with 45 additions and 17 deletions
|
@ -17,7 +17,7 @@ fi
|
||||||
|
|
||||||
# Generate random DES key & password
|
# 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')
|
#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')
|
#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
|
# Use 'rainloop' as database name and user
|
||||||
#db_user=rainloop
|
#db_user=rainloop
|
||||||
|
|
|
@ -1,25 +1,44 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
domain=$(sudo yunohost app setting rainloop domain)
|
app=rainloop
|
||||||
path=$(sudo yunohost app setting rainloop path)
|
|
||||||
|
|
||||||
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')
|
# Retrieve arguments
|
||||||
db_user=rainloop
|
domain=$(sudo yunohost app setting $app domain)
|
||||||
db_pwd=$(sudo yunohost app setting rainloop mysqlpwd)
|
path=$(sudo yunohost app setting $app path)
|
||||||
db_file=../sources/SQL/mysql/$(ls -tr -1 ../sources/SQL/mysql | head -1)
|
is_public=$(sudo yunohost app setting $app is_public)
|
||||||
|
|
||||||
mysql -u $db_user -p$db_pwd $db_user < $db_file
|
|
||||||
|
|
||||||
mysql -u $db_user -p$db_pwd $db_user < ../sources/plugins/automatic_addressbook/SQL/mysql.initial.sql
|
|
||||||
|
|
||||||
final_path=/var/www/rainloop
|
|
||||||
sudo mkdir -p $final_path
|
|
||||||
sudo cp -a ../sources/* $final_path
|
|
||||||
|
|
||||||
|
|
||||||
sudo mkdir -p $final_path/logs
|
# Check domain/path availability
|
||||||
|
sudo yunohost app checkurl $domain$path -a rainloop
|
||||||
|
if [[ ! $? -eq 0 ]]; then
|
||||||
|
exit 1
|
||||||
|
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
|
||||||
|
#sudo yunohost app initdb $db_user -p $db_pwd -s $(readlink -e ../sources/SQL/mysql.initial.sql)
|
||||||
|
#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
|
||||||
|
|
||||||
|
# Copy files to the right place
|
||||||
|
final_path=/var/www/$app/rainloop/v/
|
||||||
|
sudo rm -rf $final_path/*
|
||||||
|
#sudo mkdir -p $final_path
|
||||||
|
sudo cp -a ../sources/rainloop/v/* $final_path
|
||||||
|
|
||||||
|
|
||||||
|
# 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
|
||||||
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
||||||
sed -i "s@ALIASTOCHANGE@$final_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/rainloop.conf
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/rainloop.conf
|
||||||
|
@ -30,6 +49,15 @@ sudo cp ../conf/php-fpm.conf $finalphpconf
|
||||||
sudo chown root: $finalphpconf
|
sudo chown root: $finalphpconf
|
||||||
sudo chmod 644 $finalphpconf
|
sudo chmod 644 $finalphpconf
|
||||||
|
|
||||||
sudo service php5-fpm restart
|
# Make app public if necessary
|
||||||
|
sudo yunohost app setting my_webapp is_public -v "$is_public"
|
||||||
|
if [ "$is_public" = "Yes" ];
|
||||||
|
then
|
||||||
|
sudo yunohost app setting my_webapp skipped_uris -v "/"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Reload Nginx and regenerate SSOwat conf
|
||||||
|
sudo service php5-fpm reload
|
||||||
sudo service nginx reload
|
sudo service nginx reload
|
||||||
sudo yunohost app ssowatconf
|
sudo yunohost app ssowatconf
|
||||||
|
|
Loading…
Add table
Reference in a new issue