1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpldapadmin_ynh.git synced 2024-09-03 19:56:45 +02:00
phpldapadmin_ynh/scripts/remove

19 lines
377 B
Text
Raw Normal View History

2015-01-05 16:31:39 +01:00
#!/bin/bash
2017-09-03 01:55:45 +02:00
set -u
2016-06-04 10:50:35 +02:00
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
2015-01-05 16:31:39 +01:00
2016-06-04 10:50:35 +02:00
# Source YunoHost helpers
. /usr/share/yunohost/helpers
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
# Remove conf and app
2019-05-23 22:51:00 +02:00
sudo ynh_secure_remove --file=/var/www/phpldapadmin
sudo ynh_secure_remove --file=/etc/nginx/conf.d/$domain.d/$app.conf
2015-01-05 16:31:39 +01:00
sudo service nginx reload