mirror of
https://github.com/YunoHost-Apps/wallabag2_ynh.git
synced 2024-10-01 13:35:06 +02:00
16 lines
421 B
Bash
16 lines
421 B
Bash
#!/bin/bash
|
|
|
|
app="__APP__"
|
|
user="__APP__"
|
|
install_dir=$(ynh_app_setting_get --app="$app" --key=install_dir)
|
|
phpversion=$(ynh_app_setting_get --app="$app" --key=phpversion)
|
|
|
|
# Retrieve arguments
|
|
username=$1
|
|
purge=$2
|
|
|
|
# Deactivate the user from Wallabag
|
|
pushd "$install_dir" || ynh_die
|
|
sudo -u "$user" "php$phpversion" "bin/console" --no-interaction --env=prod \
|
|
fos:user:deactivate "$username"
|
|
popd || ynh_die
|