mirror of
https://github.com/YunoHost-Apps/wallabag2_ynh.git
synced 2024-10-01 13:35:06 +02:00
12 lines
243 B
Bash
12 lines
243 B
Bash
#!/bin/bash
|
|
|
|
app="wallabag2"
|
|
|
|
# Retrieve arguments
|
|
username=$1
|
|
purge=$2
|
|
|
|
# Deactivate the user from Wallabg
|
|
(cd "/var/www/$app" && \
|
|
sudo sudo -u "www-data" php "bin/console" --no-interaction --env=prod \
|
|
fos:user:deactivate "$username")
|