2013-12-11 21:23:28 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Retrieve arguments
|
2014-04-08 20:58:33 +02:00
|
|
|
domain=$(sudo yunohost app setting jappix domain)
|
|
|
|
path=$(sudo yunohost app setting jappix path)
|
2014-11-25 22:56:15 +01:00
|
|
|
name=$(sudo yunohost app setting jappix name)
|
2014-06-18 11:44:46 +02:00
|
|
|
language=$(sudo yunohost app setting jappix language)
|
|
|
|
|
2014-11-25 22:20:01 +01:00
|
|
|
if [[ "$name" = "" ]];
|
|
|
|
then
|
|
|
|
name="YunoJappix"
|
|
|
|
fi
|
2014-06-18 11:44:46 +02:00
|
|
|
if [[ "$language" = "" ]];
|
|
|
|
then
|
|
|
|
language="en"
|
|
|
|
fi
|
2013-12-11 21:23:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
# Remove trailing "/" for next commands
|
|
|
|
path=${path%/}
|
|
|
|
|
|
|
|
# Copy files to the right place
|
|
|
|
final_path=/var/www/jappix
|
|
|
|
sudo mkdir -p $final_path
|
|
|
|
sudo cp -r ../source/* $final_path
|
|
|
|
sudo cp ../conf/*.xml $final_path/store/conf/
|
|
|
|
|
|
|
|
# Set permissions to jappix directory
|
|
|
|
sudo chown -R www-data: $final_path
|
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
|
|
|
sudo sed -i "s@PATHTOCHANGE2@$path@g" ../conf/nginx.conf
|
|
|
|
|
|
|
|
if [ -z "$path" ]; then
|
|
|
|
path="/"
|
|
|
|
fi
|
|
|
|
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" ../conf/nginx.conf
|
|
|
|
sudo sed -i "s@ALIASTOCHANGE@$final_path/@g" ../conf/nginx.conf
|
|
|
|
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/jappix.conf
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $final_path/store/conf/main.xml
|
|
|
|
sudo sed -i "s@PATHTOCHANGE@$path@g" $final_path/store/conf/hosts.xml
|
|
|
|
sudo sed -i "s@DOMAINTOCHANGE@$domain@g" $final_path/store/conf/main.xml
|
2014-06-18 11:45:33 +02:00
|
|
|
sudo sed -i "s@CHANGELANG@$language@g" $final_path/store/conf/main.xml
|
2014-11-25 22:20:01 +01:00
|
|
|
sudo sed -i "s@CHANGENAME@$name@g" $final_path/store/conf/main.xml
|
2013-12-11 21:23:28 +01:00
|
|
|
sudo sed -i "s@DOMAINTOCHANGE@$domain@g" $final_path/store/conf/hosts.xml
|
|
|
|
|
|
|
|
# Reload Nginx and regenerate SSOwat conf
|
|
|
|
sudo service nginx reload
|
|
|
|
sudo yunohost app ssowatconf
|