diff --git a/manifest.json b/manifest.json index 07a7ce2..fbd962a 100644 --- a/manifest.json +++ b/manifest.json @@ -42,14 +42,6 @@ "name": "is_public", "type": "boolean", "default": true - }, - { - "name": "admin", - "type": "user" - }, - { - "name": "password", - "type": "password" } ] } diff --git a/scripts/change_url b/scripts/change_url index fe39054..060c9e8 100644 --- a/scripts/change_url +++ b/scripts/change_url @@ -30,8 +30,6 @@ ynh_script_progression --message="Loading installation settings..." --weight=1 final_path=$(ynh_app_setting_get --app=$app --key=final_path) port=$(ynh_app_setting_get --app=$app --key=port) datadir=$(ynh_app_setting_get --app=$app --key=datadir) -password=$(ynh_app_setting_get --app=$app --key=password) -admin=$(ynh_app_setting_get --app=$app --key=admin) #================================================= # BACKUP BEFORE CHANGE URL THEN ACTIVE TRAP diff --git a/scripts/install b/scripts/install index 6b669c4..af3e0e0 100755 --- a/scripts/install +++ b/scripts/install @@ -23,8 +23,6 @@ ynh_abort_if_errors domain=$YNH_APP_ARG_DOMAIN path_url=$YNH_APP_ARG_PATH is_public=$YNH_APP_ARG_IS_PUBLIC -admin=$YNH_APP_ARG_ADMIN -password=$YNH_APP_ARG_PASSWORD architecture=$YNH_ARCH app=$YNH_APP_INSTANCE_NAME @@ -48,8 +46,6 @@ ynh_script_progression --message="Storing installation settings..." --weight=1 ynh_app_setting_set --app=$app --key=domain --value=$domain ynh_app_setting_set --app=$app --key=path --value=$path_url -ynh_app_setting_set --app=$app --key=password --value=$password -ynh_app_setting_set --app=$app --key=admin --value=$admin #================================================= # STANDARD MODIFICATIONS