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

17 lines
340 B
Text
Raw Normal View History

2015-01-05 16:31:39 +01:00
#!/bin/bash
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
2015-01-05 16:31:39 +01:00
sudo rm -rf /var/www/phpldapadmin
sudo rm -f /etc/nginx/conf.d/$domain.d/phpldapadmin.conf
sudo service nginx reload