1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kresus_ynh.git synced 2024-09-03 19:36:10 +02:00
kresus_ynh/scripts/remove
J. Fernando Lagrange 21dd08c9a4 Add dedicated system user.
This adds a dependency on YNH version to be able to use helpers.
   Prepare work on #2.
2017-09-17 11:09:49 +02:00

22 lines
471 B
Bash

#!/bin/bash
app=$YNH_APP_INSTANCE_NAME
# Source YunoHost helpers
source /usr/share/yunohost/helpers
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
# Remove sources
systemctl stop $app
systemctl disable $app
sudo rm -rf /home/yunohost.app/$app
sudo rm -f /etc/nginx/conf.d/$domain.d/$app.conf
sudo rm -f /etc/systemd/system/$app.service
# Reload nginx service
sudo service nginx reload
# Remove dedicated system user
ynh_system_user_delete $app