mirror of
https://github.com/YunoHost-Apps/nodebb_ynh.git
synced 2024-09-03 19:46:29 +02:00
Update install
This commit is contained in:
parent
04d20600e6
commit
28fe467d5e
1 changed files with 10 additions and 3 deletions
|
@ -31,9 +31,11 @@ ynh_abort_if_errors # Active trap pour arrêter le script si une erreur est dét
|
||||||
domain=$YNH_APP_ARG_DOMAIN
|
domain=$YNH_APP_ARG_DOMAIN
|
||||||
is_public=$YNH_APP_ARG_IS_PUBLIC
|
is_public=$YNH_APP_ARG_IS_PUBLIC
|
||||||
path_url="" # Assure la compatibilité avec les fonctions utilisant $path_url
|
path_url="" # Assure la compatibilité avec les fonctions utilisant $path_url
|
||||||
|
admin_name=$YNH_APP_ARG_ADMIN_NAME
|
||||||
|
admin_pass=$YNH_APP_ARG_ADMIN_PASS
|
||||||
|
admin_email=$YNH_APP_ARG_ADMIN_EMAIL
|
||||||
app=$YNH_APP_INSTANCE_NAME
|
app=$YNH_APP_INSTANCE_NAME
|
||||||
|
secret=$(ynh_string_random)
|
||||||
#=================================================
|
#=================================================
|
||||||
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
|
# CHECK IF THE APP CAN BE INSTALLED WITH THIS ARGS
|
||||||
#=================================================
|
#=================================================
|
||||||
|
@ -55,6 +57,10 @@ CHECK_FINALPATH # Vérifie que le dossier de destination n'est pas déjà utilis
|
||||||
|
|
||||||
ynh_app_setting_set $app domain $domain
|
ynh_app_setting_set $app domain $domain
|
||||||
ynh_app_setting_set $app is_public $is_public
|
ynh_app_setting_set $app is_public $is_public
|
||||||
|
ynh_app_setting_set "$app" admin_pass "$admin_pass"
|
||||||
|
ynh_app_setting_set "$app" admin_name "$admin_name"
|
||||||
|
ynh_app_setting_set "$app" admin_email "$admin_email"
|
||||||
|
ynh_app_setting_set "$app" secret "$secret"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# STANDARD MODIFICATIONS
|
# STANDARD MODIFICATIONS
|
||||||
|
@ -147,7 +153,8 @@ pushd "$final_path"
|
||||||
sudo npm install
|
sudo npm install
|
||||||
sudo chown -R $app: $final_path
|
sudo chown -R $app: $final_path
|
||||||
sudo ./nodebb setup <<< \
|
sudo ./nodebb setup <<< \
|
||||||
"$admin_user
|
"$admin_name
|
||||||
|
$admin_email
|
||||||
$admin_pass"
|
$admin_pass"
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue