1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00
freshrss_ynh/hooks/post_app_addaccess

18 lines
403 B
Text
Raw Normal View History

2021-04-17 18:39:02 +02:00
#!/usr/bin/env bash
set -a
source /usr/share/yunohost/helpers
2019-01-04 17:50:59 +01:00
app=$1
new_users=$2
2017-02-13 23:06:33 +01:00
2021-04-17 18:39:02 +02:00
if [[ "${0//.\/50-}" = "$app" ]]; then
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2021-04-17 18:39:02 +02:00
for user in $(echo "$new_users" | sed "s/,/ /g")
2016-09-04 15:19:28 +02:00
do
2017-02-13 22:52:07 +01:00
user_token=$(ynh_string_random)
2021-04-17 18:39:02 +02:00
sudo -u $app $final_path/cli/create-user.php --user $user --language en --token $user_token
2016-09-04 15:19:28 +02:00
done
fi