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
2016-06-04 08:50:35 +00:00

16 lines
340 B
Bash
Executable file

#!/bin/bash
# See comments in install script
app=$YNH_APP_INSTANCE_NAME
# Source YunoHost helpers
. /usr/share/yunohost/helpers
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
# Remove conf and app
sudo rm -rf /var/www/phpldapadmin
sudo rm -f /etc/nginx/conf.d/$domain.d/phpldapadmin.conf
sudo service nginx reload