| 12345678910111213141516171819202122232425262728293031323334 | #!/bin/bash# See comments in install scriptapp=$YNH_APP_INSTANCE_NAME# Source YunoHost helperssource /usr/share/yunohost/helpers# Retrieve app settingsdomain=$(ynh_app_setting_get "$app" domain)# Remove sourcessudo rm -rf /var/www/$app# Remove nginx configuration filesudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf### PHP (remove if not used) #### If a dedicated php-fpm process is used:# sudo rm -f /etc/php5/fpm/pool.d/$app.conf# sudo service php5-fpm reload### PHP end ###### MySQL (remove if not used) #### If a MySQL database is used:# # Drop MySQL database and user# dbname=$app# dbuser=$app# ynh_mysql_drop_db "$dbname" || true# ynh_mysql_drop_user "$dbuser" || true### MySQL end #### Reload nginx servicesudo service nginx reload
 |