mirror of
https://github.com/YunoHost-Apps/strut_ynh.git
synced 2024-09-03 20:26:33 +02:00
47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
# The parameter $1 is the backup directory location dedicated to the app
|
|
BACKUP_DIR=$1
|
|
|
|
# The parameter $2 is the id of the app instance ex: strut__2
|
|
APP=$2
|
|
|
|
domain=$(sudo yunohost app setting $APP domain)
|
|
path=$(sudo yunohost app setting $APP path)
|
|
public_site=$(sudo yunohost app setting $APP public_site)
|
|
|
|
# Check domain/path availability
|
|
sudo yunohost app checkurl $domain$path -a $APP
|
|
if [[ ! $? -eq 0 ]]; then
|
|
echo "There is already an app on this URL : $domain$path" | sudo tee /dev/stderr
|
|
exit 1
|
|
fi
|
|
|
|
# Restore the app files
|
|
final_path=/var/www/$APP
|
|
|
|
if [ -d $final_path ]; then
|
|
echo "There is already a directory: $final_path " | sudo tee /dev/stderr
|
|
exit 1
|
|
fi
|
|
sudo cp -a "${BACKUP_DIR}/www" $final_path
|
|
sudo chown -R www-data: $final_path
|
|
|
|
# Restore the conf files
|
|
conf=/etc/nginx/conf.d/$domain.d/$APP.conf
|
|
if [ -f $conf ]; then
|
|
echo "There is already a nginx conf file at this path: $conf " | sudo tee /dev/stderr
|
|
exit 1
|
|
fi
|
|
sudo cp -a "${BACKUP_DIR}/conf/nginx.conf" $conf
|
|
|
|
# Reload Nginx
|
|
sudo service nginx reload
|
|
|
|
# Set ssowat config
|
|
sudo yunohost app setting $APP skipped_uris -v "/"
|
|
if [ "$public_site" = "No" ];
|
|
then
|
|
sudo yunohost app setting $APP protected_uris -v "/index.html,/scripts"
|
|
fi
|
|
sudo yunohost app ssowatconf
|