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
eric_G 95022ac475
Testing (#207)
* Fix hook (#206)

* Auto-update READMEs

* fix hook

---------

Co-authored-by: yunohost-bot <yunohost@yunohost.org>

* Update manifest.toml (#208)

* Update manifest.toml

* Auto-update READMEs

* Add parameters.yml (#209)

* Add parameters.yml

* Update upgrade

* Update change_url

* Function (#210)

* Add parameters.yml

* Update upgrade

* add function

---------

Co-authored-by: Kayou <pierre@kayou.io>
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2024-07-22 21:05:52 +02:00

22 lines
570 B
Bash

#!/bin/bash
# Source YunoHost helpers
source /usr/share/yunohost/helpers
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
user_email=$2
# Generate a random password
user_pass=$(ynh_string_random)
# Create the new user in Wallabag
pushd "$install_dir" || ynh_die
sudo -u "$user" "php$phpversion" "bin/console" --no-interaction --env=prod \
fos:user:create "$username" "$user_email" "$user_pass"
popd || ynh_die