2013-11-29 12:49:27 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-05-28 14:58:23 +02:00
|
|
|
source ./_common.sh
|
|
|
|
|
2013-11-29 12:49:27 +01:00
|
|
|
# Retrieve arguments
|
|
|
|
domain=$1
|
|
|
|
path=$2
|
2014-11-25 22:08:24 +01:00
|
|
|
name=$3
|
|
|
|
language=$4
|
2013-11-29 12:49:27 +01:00
|
|
|
|
|
|
|
# Check domain/path availability
|
|
|
|
sudo yunohost app checkurl $domain$path -a jappix
|
|
|
|
if [[ ! $? -eq 0 ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-11-29 19:49:58 +01:00
|
|
|
# Remove trailing "/" for next commands
|
2013-11-29 20:25:13 +01:00
|
|
|
path=${path%/}
|
2013-11-29 20:02:46 +01:00
|
|
|
|
2015-05-28 14:58:23 +02:00
|
|
|
# Retrieve sources
|
2016-05-04 13:43:23 +02:00
|
|
|
wget -nv -q -O jappix.tar.gz https://github.com/jappix/jappix/archive/${VERSION}.tar.gz
|
2015-05-28 14:58:23 +02:00
|
|
|
|
2013-11-29 12:49:27 +01:00
|
|
|
# Copy files to the right place
|
2014-11-25 22:08:24 +01:00
|
|
|
final_path=/var/www/jappix
|
|
|
|
sudo mkdir -p $final_path
|
2015-05-28 14:58:23 +02:00
|
|
|
sudo tar -C $final_path -xf jappix.tar.gz --strip-components 1
|
2016-05-04 13:38:38 +02:00
|
|
|
sudo mkdir -p $final_path/store/conf
|
2014-11-25 22:08:24 +01:00
|
|
|
sudo cp ../conf/*.xml $final_path/store/conf/
|
2013-11-29 12:49:27 +01:00
|
|
|
|
|
|
|
# Set permissions to jappix directory
|
|
|
|
sudo chown -R www-data: $final_path
|
|
|
|
|
|
|
|
# Modify Nginx configuration file and copy it to Nginx conf directory
|
2013-12-09 16:46:25 +01:00
|
|
|
sudo sed -i "s@PATHTOCHANGE2@$path@g" ../conf/nginx.conf
|
|
|
|
|
|
|
|
if [ -z "$path" ]; then
|
2014-11-25 22:08:24 +01:00
|
|
|
path="/"
|
2013-12-09 16:46:25 +01:00
|
|
|
fi
|
|
|
|
|
2014-06-18 15:13:31 +02:00
|
|
|
sudo ls $final_path/i18n/$language > /dev/null 2>&1
|
2014-06-18 11:38:45 +02:00
|
|
|
if [ $? != 0 ];
|
|
|
|
then
|
|
|
|
language="en"
|
|
|
|
fi
|
|
|
|
|
2014-12-09 18:04:06 +01:00
|
|
|
sudo yunohost app setting jappix name -v $name
|
2014-06-18 11:46:29 +02:00
|
|
|
sudo yunohost app setting jappix language -v $language
|
|
|
|
|
2013-11-29 12:49:27 +01:00
|
|
|
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:42:41 +02:00
|
|
|
sudo sed -i "s@CHANGELANG@$language@g" $final_path/store/conf/main.xml
|
2014-11-25 22:08:24 +01:00
|
|
|
sudo sed -i "s@CHANGENAME@$name@g" $final_path/store/conf/main.xml
|
2013-11-29 12:49:27 +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
|