1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mautrix_signal_ynh.git synced 2024-09-03 19:46:07 +02:00

Cleanup "common" variables only used for migration

This commit is contained in:
Mayeul Cantan 2024-04-21 18:08:20 +02:00
parent f6941f1e7f
commit 10cd9d4295
2 changed files with 6 additions and 7 deletions

View file

@ -4,10 +4,6 @@
# COMMON VARIABLES
#=================================================
signald_data="/var/lib/signald"
signald_exe="/usr/bin/signald"
signald_user="signald"
enable_relaybot=true
#=================================================

View file

@ -12,11 +12,13 @@
# Version 0.5.1 of Mautrix Signal Bridge is written in Go, whereas previous versions
# were written in Python. Also signald data is not needed anymore.
# Remove rustup
export PATH="$PATH:$install_dir/.cargo/bin:$install_dir/.local/bin:/usr/local/sbin"
signald_data="/var/lib/signald"
signald_exe="/usr/bin/signald"
signald_user="signald"
# Remove rustup
if [ -e "$install_dir/.rustup" ]; then
ynh_exec_as "$app" env "PATH=$PATH" rustup self uninstall
ynh_exec_as "$app" "$install_dir/.cargo/bin/rustup" self uninstall
fi
# Remove signald executable
@ -25,6 +27,7 @@ ynh_secure_remove --file="$signald_exe"
# Remove signald data
ynh_secure_remove --file="$signald_data"
# Remove signald system user
ynh_system_user_delete --username=$signald_user