mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
18 lines
442 B
Bash
Executable file
18 lines
442 B
Bash
Executable file
#!/bin/bash
|
|
source /usr/share/yunohost/helpers
|
|
source _common.sh
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
user=$app
|
|
local_path=$(sudo yunohost app setting $app local_path)
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
ynh_mysql_remove_db "$user" "$app"
|
|
ynh_system_user_delete "$user"
|
|
|
|
ynh_secure_rm "$local_path"
|
|
ynh_secure_rm "/home/yunohost.app/$app"
|
|
ynh_rm_nginx_conf
|
|
ynh_rm_php_fpm_conf
|
|
sudo yunohost app ssowatconf
|
|
echo -e "\e[0m" # Restore norml color
|