mirror of
https://github.com/YunoHost-Apps/freshrss_ynh.git
synced 2024-09-03 18:36:33 +02:00
10 lines
223 B
Bash
Executable file
10 lines
223 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -a
|
|
source /usr/share/yunohost/helpers
|
|
|
|
app="${0//.\/50-}"
|
|
install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
|
|
username=$1
|
|
|
|
sudo -u $app $install_dir/cli/delete-user.php --user $username
|