#!/bin/bash # causes the shell to exit if any subcommand or pipeline returns a non-zero status source /usr/share/yunohost/helpers ynh_abort_if_errors # Retrieve old app settings app=$YNH_APP_INSTANCE_NAME domain=$(ynh_app_setting_get $app domain) # Restore sources & data cp -a ./sources "/var/www/${app}" # Restore Nginx and YunoHost parameters cp -a ./nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf" # Reload services ynh_systemd_action --service_name=nginx --action=reload