mirror of
https://github.com/YunoHost-Apps/borgserver_ynh.git
synced 2024-09-03 20:36:20 +02:00
27 lines
725 B
Text
27 lines
725 B
Text
|
#!/bin/bash
|
||
|
|
||
|
#=================================================
|
||
|
# GENERIC START
|
||
|
#=================================================
|
||
|
# IMPORT GENERIC HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
source /usr/share/yunohost/helpers
|
||
|
|
||
|
#=================================================
|
||
|
# LOAD SETTINGS
|
||
|
#=================================================
|
||
|
|
||
|
app=$YNH_APP_INSTANCE_NAME
|
||
|
ssh_user=$(ynh_app_setting_get $app ssh_user)
|
||
|
|
||
|
#=================================================
|
||
|
# REMOVE DEPENDENCIES
|
||
|
#=================================================
|
||
|
ynh_remove_app_dependencies
|
||
|
|
||
|
#=================================================
|
||
|
# REMOVE FILES
|
||
|
#=================================================
|
||
|
userdel $ssh_user
|