2015-02-01 20:20:54 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-02-06 19:47:10 +01:00
|
|
|
app=rainloop
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-02-06 19:47:10 +01:00
|
|
|
# Retrieve arguments
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
|
|
path=$(sudo yunohost app setting $app path)
|
|
|
|
is_public=$(sudo yunohost app setting $app is_public)
|
2015-10-22 20:55:36 +02:00
|
|
|
dp_pwd=$(sudo yunohost app setting $app mysqlpwd)
|
2015-03-07 15:30:01 +01:00
|
|
|
db_user=$app
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-10-22 20:55:36 +02:00
|
|
|
# no update for db now...
|
|
|
|
#root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
|
|
#mysql -u root -p$root_pwd -e "DROP DATABASE $db_name ; DROP USER $db_user@localhost ;"
|
|
|
|
#sudo yunohost app initdb $db_user -p $db_pwd
|
2015-02-06 19:47:10 +01:00
|
|
|
|
|
|
|
# Copy files to the right place
|
2015-08-10 00:03:42 +02:00
|
|
|
final_path=/var/www/$app
|
2015-10-11 22:46:23 +02:00
|
|
|
rainloop_path=${final_path}/app
|
2015-10-22 20:55:36 +02:00
|
|
|
#rainloop_path=${final_path}
|
2015-10-11 22:46:23 +02:00
|
|
|
|
2015-10-22 20:55:36 +02:00
|
|
|
# no delete... we keep old install, the new is in a new path
|
|
|
|
#sudo rm -rf $final_path
|
|
|
|
#sudo mkdir -p $final_path
|
|
|
|
#sudo mkdir -p $rainloop_path
|
2015-10-11 22:46:23 +02:00
|
|
|
|
2015-06-28 13:42:45 +02:00
|
|
|
# Use of latest community edition
|
2015-10-22 20:55:36 +02:00
|
|
|
sudo unzip ../sources/rainloop-community.zip -d $rainloop_path/
|
2015-10-11 22:46:23 +02:00
|
|
|
|
2015-10-22 20:55:36 +02:00
|
|
|
# update patch to auto load version.
|
|
|
|
sudo cp ../sources/patch/index_auto_version.php $rainloop_path/index.php
|
2015-02-06 19:47:10 +01:00
|
|
|
|
2015-10-22 20:55:36 +02:00
|
|
|
# update ynh plugins:
|
|
|
|
sudo mkdir -p $rainloop_path/data/_data_/_default_/plugins
|
|
|
|
sudo cp -rf ../sources/plugins/ynh-login-mapping $rainloop_path/data/_data_/_default_/plugins/.
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-10-22 20:55:36 +02:00
|
|
|
# update SSO and auto version
|
|
|
|
if [ $final_path == $rainloop_path ]
|
|
|
|
then
|
|
|
|
# use modified version of master index.php that implement sso
|
|
|
|
sudo cp ../sources/sso/index.php $final_path/index.php
|
|
|
|
else
|
|
|
|
# use only sso on master
|
|
|
|
sudo cp ../sources/sso/sso.php $final_path/index.php
|
|
|
|
sudo cp ../sources/patch/index_auto_version.php $rainloop_path/index.php
|
|
|
|
fi
|
|
|
|
sudo sed -i "s@domain.tld@$domain@g" $final_path/index.php
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $final_path/index.php
|
2015-10-07 21:23:28 +02:00
|
|
|
|
2015-10-11 22:46:23 +02:00
|
|
|
# Set permissions to rainloop directory
|
|
|
|
sudo chown -R www-data:www-data $final_path
|
2015-10-07 21:23:28 +02:00
|
|
|
|
2015-10-22 20:55:36 +02:00
|
|
|
# Update Nginx configuration file
|
|
|
|
nginx_conf_file=/etc/nginx/conf.d/$domain.d/$app.conf
|
|
|
|
sudo cp ../conf/nginx.conf $nginx_conf_file
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $nginx_conf_file
|
|
|
|
sudo sed -i "s@ALIASTOCHANGE@$final_path/@g" $nginx_conf_file
|
|
|
|
sudo sed -i "s@NAMETOCHANGE@$app@g" $nginx_conf_file
|
|
|
|
sudo chown root: $nginx_conf_file
|
|
|
|
sudo chmod 644 $nginx_conf_file
|
2015-02-06 19:47:10 +01:00
|
|
|
|
2015-10-22 20:55:36 +02:00
|
|
|
finalphpconf=/etc/php5/fpm/pool.d/$app.conf
|
|
|
|
sudo cp ../conf/php-fpm.conf $finalphpconf
|
|
|
|
sudo sed -i "s@NAMETOCHANGE@$app@g" $finalphpconf
|
|
|
|
sudo chown root: $finalphpconf
|
|
|
|
sudo chmod 644 $finalphpconf
|
2015-02-06 19:47:10 +01:00
|
|
|
|
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
|
|
|
sudo service php5-fpm reload
|
2015-02-01 20:20:54 +01:00
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|