1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ofbiz_ynh.git synced 2024-09-03 19:46:33 +02:00
ofbiz_ynh/scripts/upgrade

33 lines
877 B
Text
Raw Normal View History

2022-02-28 23:39:48 +01:00
#!/bin/bash
2022-03-01 00:11:09 +01:00
app=ynhexample
2022-02-28 23:39:48 +01:00
2022-03-01 00:11:09 +01:00
# Retrieve arguments
domain=$(sudo yunohost app setting $app domain)
path=$(sudo yunohost app setting $app path)
admin=$(sudo yunohost app setting $app admin)
is_public=$(sudo yunohost app setting $app is_public)
2022-02-28 23:39:48 +01:00
2022-03-01 00:11:09 +01:00
# Remove trailing "/" for next commands
path=${path%/}
2022-02-28 23:39:48 +01:00
2022-03-01 00:11:09 +01:00
# Copy source files
final_path=/var/www/$app
sudo mkdir -p $final_path
sudo cp -a ../sources/* $final_path
2022-02-28 23:39:48 +01:00
2022-03-01 00:11:09 +01:00
# 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
sudo cp ../conf/nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
2022-02-28 23:39:48 +01:00
2022-03-01 00:11:09 +01:00
# If app is public, add url to SSOWat conf as skipped_uris
if [ "$is_public" = "Yes" ];
2022-02-28 23:39:48 +01:00
then
2022-03-01 00:11:09 +01:00
sudo yunohost app setting $app skipped_uris -v "/"
2022-02-28 23:39:48 +01:00
fi
2022-03-01 00:11:09 +01:00
# Restart services
sudo service nginx reload
sudo yunohost app ssowatconf
2022-02-28 23:39:48 +01:00