1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wallabag2_ynh.git synced 2024-10-01 13:35:06 +02:00
wallabag2_ynh/hooks/post_user_create
2020-03-21 01:31:24 +01:00

19 lines
398 B
Bash

#!/bin/bash
app="__APP__"
user="__APP__"
# Retrieve arguments
username=$1
user_email=$2
# Source YunoHost helpers
source /usr/share/yunohost/helpers
# Generate a random password
user_pass=$(ynh_string_random)
# Create the new user in Wallabag
(cd "/var/www/$app" && \
sudo -u "$user" php "bin/console" --no-interaction --env=prod \
fos:user:create "$username" "$user_email" "$user_pass")