2015-02-01 20:20:54 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-02-06 19:42:21 +01:00
|
|
|
app=rainloop
|
|
|
|
|
2015-02-01 20:20:54 +01:00
|
|
|
# Retrieve arguments
|
|
|
|
domain=$1
|
|
|
|
path=$2
|
2015-02-06 19:42:21 +01:00
|
|
|
is_public=$3
|
|
|
|
|
2015-04-13 00:20:37 +02:00
|
|
|
# Removal of trailing /
|
2015-04-13 16:31:15 +02:00
|
|
|
path=${path%/}
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-04-13 16:30:02 +02:00
|
|
|
#sudo yunohost app setting rainloop domain -v $domain
|
2015-04-13 15:12:34 +02:00
|
|
|
|
|
|
|
|
2015-02-01 20:20:54 +01:00
|
|
|
# Check domain/path availability
|
2015-04-13 16:07:51 +02:00
|
|
|
sudo yunohost app checkurl $domain$path -a rainloop
|
|
|
|
if [[ ! $? -eq 0 ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-03-07 15:30:01 +01:00
|
|
|
# Generate random password
|
2015-02-06 19:47:10 +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-07 15:30:01 +01:00
|
|
|
db_pwd=$4
|
2015-02-01 20:20:54 +01:00
|
|
|
|
|
|
|
# Use 'rainloop' as database name and user
|
2015-03-07 15:30:01 +01:00
|
|
|
db_user=$app
|
2015-02-01 20:20:54 +01:00
|
|
|
|
|
|
|
# Initialize database and store mysql password for upgrade
|
2015-03-07 15:30:01 +01:00
|
|
|
sudo yunohost app initdb $db_user -p $db_pwd
|
|
|
|
sudo yunohost app setting rainloop mysqlpwd -v $db_pwd
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-02-06 19:42:21 +01:00
|
|
|
#mysql -u $db_user -p$db_pwd $db_user < ../sources/plugins/automatic_addressbook/SQL/mysql.initial.sql
|
2015-02-01 20:20:54 +01:00
|
|
|
|
|
|
|
# Copy files to the right place
|
2015-02-06 19:42:21 +01:00
|
|
|
final_path=/var/www/$app
|
|
|
|
sudo rm -rf $final_path
|
2015-02-01 20:20:54 +01:00
|
|
|
sudo mkdir -p $final_path
|
2015-06-28 13:40:52 +02:00
|
|
|
# Use of latest community edition
|
|
|
|
wget http://repository.rainloop.net/v2/webmail/rainloop-community-latest.zip -O $final_path/rainloop.zip
|
|
|
|
unzip $final_path/rainloop.zip -d $final_path/
|
2015-02-01 20:20:54 +01:00
|
|
|
|
|
|
|
# Set permissions to rainloop directory
|
|
|
|
# sudo mkdir -p $final_path/logs
|
|
|
|
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@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
|
2015-04-13 16:42:27 +02:00
|
|
|
sed -i "s@NAMETOCHANGE@$app@g" ../conf/nginx.conf
|
2015-03-07 15:30:01 +01:00
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-04-13 16:07:51 +02:00
|
|
|
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
|
2015-02-01 20:20:54 +01:00
|
|
|
|
2015-02-06 19:42:21 +01:00
|
|
|
# Make app public if necessary
|
2015-03-07 15:30:01 +01:00
|
|
|
sudo yunohost app setting $app is_public -v "$is_public"
|
2015-02-06 19:42:21 +01:00
|
|
|
if [ "$is_public" = "Yes" ];
|
|
|
|
then
|
2015-03-07 15:30:01 +01:00
|
|
|
sudo yunohost app setting $app skipped_uris -v "/"
|
2015-02-06 19:42:21 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
2015-02-01 20:20:54 +01:00
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
2015-02-06 19:42:21 +01:00
|
|
|
sudo service php5-fpm reload
|
2015-02-01 20:20:54 +01:00
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|