diff --git a/check_process b/check_process index ca42345..9a26695 100644 --- a/check_process +++ b/check_process @@ -10,7 +10,6 @@ admin="john" (USER) is_public=1 (PUBLIC|public=1|private=0) language="fr" - password="pass" dav_support=1 (DAV_SUPPORT|dav_support=1|dav_support=0) signup=0 (SIGNUP|signup=1|signup=0) two_factor=0 (TWO_FACTOR|two_factor=1|two_factor=0) diff --git a/manifest.json b/manifest.json index c7efdbe..5cc62d6 100644 --- a/manifest.json +++ b/manifest.json @@ -52,15 +52,6 @@ }, "example": "johndoe" }, - { - "name": "password", - "type": "password", - "ask": { - "en": "Set the administrator password", - "fr": "Définissez le mot de passe administrateur" - }, - "example": "Choose a password" - }, { "name": "is_public", "type": "boolean", diff --git a/scripts/install b/scripts/install index 9bf4362..db4da99 100755 --- a/scripts/install +++ b/scripts/install @@ -30,7 +30,7 @@ is_public=$YNH_APP_ARG_IS_PUBLIC language=$YNH_APP_ARG_LANGUAGE random_key=$(ynh_string_random --length=32) email=$(ynh_user_get_info $admin 'mail') -password=$YNH_APP_ARG_PASSWORD +password=$(ynh_string_random --length=10) dav_support=$YNH_APP_ARG_DAV_SUPPORT signup=$YNH_APP_ARG_SIGNUP two_factor=$YNH_APP_ARG_TWO_FACTOR