1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zerobin_ynh.git synced 2024-09-03 18:06:01 +02:00
zerobin_ynh/scripts/upgrade

77 lines
2.1 KiB
Text
Raw Normal View History

2013-12-24 13:37:55 +01:00
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -eu
source /usr/share/yunohost/helpers
source ./_common
2016-08-24 19:43:33 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get "$app" domain)
path=$(ynh_app_setting_get "$app" path)
user=$(ynh_app_setting_get "$app" user)
is_public=$(ynh_app_setting_get $app is_public)
2013-12-24 13:37:55 +01:00
# Remove trailing "/" for next commands
2015-05-23 15:04:48 +02:00
if [[ ! "$path" == "/" ]]; then
path=${path%/}
fi
2013-12-24 13:37:55 +01:00
# Init final_path, if ever it got deleted somehow
2016-08-24 19:43:33 +02:00
final_path=/var/www/$app
2013-12-24 13:37:55 +01:00
sudo mkdir -p $final_path
# Clean all files and directory except the data directory
2017-04-16 22:17:13 +02:00
ynh_secure_rm $final_path/cfg
ynh_secure_rm $final_path/CREDITS.md
ynh_secure_rm $final_path/i18n
ynh_secure_rm $final_path/index.php
ynh_secure_rm $final_path/js
ynh_secure_rm $final_path/README.md
ynh_secure_rm $final_path/tmp
ynh_secure_rm $final_path/CHANGELOG.md
ynh_secure_rm $final_path/css
ynh_secure_rm $final_path/favicon.ico
ynh_secure_rm $final_path/img
ynh_secure_rm $final_path/INSTALL.md
ynh_secure_rm $final_path/lib
ynh_secure_rm $final_path/robots.txt
ynh_secure_rm $final_path/tpl
2017-04-16 23:57:23 +02:00
ynh_secure_rm $final_path/data
# Copy files to the right place
extract_source $final_path
2013-12-24 13:37:55 +01:00
# Files owned by root, www-data can just read
sudo find $final_path -type f | xargs sudo chmod 644
sudo find $final_path -type d | xargs sudo chmod 755
sudo chown -R root: $final_path
# except for data and tmp subdir, where www-data must have write permissions
2016-09-23 15:48:34 +02:00
sudo mkdir -p $final_path/{data,tmp}
sudo chown -R www-data:root $final_path/{data,tmp}
2013-12-24 13:37:55 +01:00
sudo chmod 700 $final_path/{data,tmp}
# Modify Nginx configuration file and copy it to Nginx conf directory
sed -i "s@YNH_WWW_PATH@$path@g" ../conf/nginx.conf
sed -i "s@YNH_WWW_ALIAS@$final_path/@g" ../conf/nginx.conf
2016-08-24 19:43:33 +02:00
nginxconf=/etc/nginx/conf.d/$domain.d/$app.conf
2014-03-11 15:03:25 +01:00
sudo cp ../conf/nginx.conf $nginxconf
sudo chown root: $nginxconf
sudo chmod 600 $nginxconf
2013-12-24 13:37:55 +01:00
2017-04-16 23:57:23 +02:00
# Create the php-fpm pool config
ynh_pool_fpm
# Set ssowat config
ynh_app_setting_set "$app" is_public "$is_public"
2014-07-22 21:26:46 +02:00
if [ "$is_public" = "Yes" ];
2013-12-24 13:37:55 +01:00
then
ynh_app_setting_set "$app" unprotected_uris "/"
2013-12-24 13:37:55 +01:00
fi
# Reload Nginx
sudo systemctl reload nginx
2013-12-24 13:37:55 +01:00
sudo yunohost app ssowatconf