1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/vaultwarden_ynh.git synced 2024-09-03 18:26:31 +02:00

Merge pull request #66 from YunoHost-Apps/testing

Fix #65
This commit is contained in:
yalh76 2020-04-17 12:45:03 +02:00 committed by GitHub
commit c67bb939ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -1,5 +1,5 @@
Bitwarden was successfully installed :) Bitwarden was successfully installed :)
Please open https://__DOMAIN__/admin Please open https://__DOMAIN____PATH_URL__/admin
The admin token is: __ADMIN_TOKEN__ The admin token is: __ADMIN_TOKEN__
You will be able to invit users to your bitwarden instance. You will be able to invit users to your bitwarden instance.
If you facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/bitwarden_ynh If you facing an issue or want to improve this app, please open a new issue in this project: https://github.com/YunoHost-Apps/bitwarden_ynh

View file

@ -242,6 +242,7 @@ ynh_print_info --message="Sending a readme for the admin..."
ynh_replace_string --match_string="__ADMIN_MAIL__" --replace_string="$admin_mail" --target_file="../conf/message" ynh_replace_string --match_string="__ADMIN_MAIL__" --replace_string="$admin_mail" --target_file="../conf/message"
ynh_replace_string --match_string="__ADMIN_TOKEN__" --replace_string="$admin_token" --target_file="../conf/message" ynh_replace_string --match_string="__ADMIN_TOKEN__" --replace_string="$admin_token" --target_file="../conf/message"
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="../conf/message" ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="../conf/message"
ynh_replace_string --match_string="__PATH_URL__" --replace_string="$path_url" --target_file="../conf/message"
ynh_send_readme_to_admin --app_message="../conf/message" --recipients="$admin_mail" --type='install' ynh_send_readme_to_admin --app_message="../conf/message" --recipients="$admin_mail" --type='install'