mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
38 lines
946 B
Bash
38 lines
946 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Ending the migration process from Spip2 to Spip
|
||
|
|
||
|
set -u
|
||
|
|
||
|
#=================================================
|
||
|
# IMPORT GENERIC HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
source /usr/share/yunohost/helpers
|
||
|
|
||
|
#=================================================
|
||
|
# SET VARIABLES
|
||
|
#=================================================
|
||
|
|
||
|
old_app="__OLD_APP__"
|
||
|
new_app="__NEW_APP__"
|
||
|
script_name="$0"
|
||
|
|
||
|
#=================================================
|
||
|
# DELETE OLD APP'S SETTINGS
|
||
|
#=================================================
|
||
|
|
||
|
ynh_secure_remove "/etc/yunohost/apps/$old_app"
|
||
|
yunohost app ssowatconf
|
||
|
|
||
|
#=================================================
|
||
|
# REMOVE THE OLD USER
|
||
|
#=================================================
|
||
|
|
||
|
ynh_system_user_delete $old_app
|
||
|
|
||
|
#=================================================
|
||
|
# DELETE THIS SCRIPT
|
||
|
#=================================================
|
||
|
|
||
|
echo "rm $script_name" | at now + 1 minutes
|