diff --git a/check_process b/check_process index 93b5642..17e1c9f 100644 --- a/check_process +++ b/check_process @@ -5,9 +5,9 @@ admin="john" is_public=1 (PUBLIC|public=1|private=0) language="fr" - 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) + dav_support=1 + signup=0 + two_factor=0 ; Checks pkg_linter=1 setup_sub_dir=0 diff --git a/scripts/install b/scripts/install old mode 100755 new mode 100644 index 06b170d..e750c35 --- a/scripts/install +++ b/scripts/install @@ -143,6 +143,7 @@ else dav_boolean="true" dav="No" fi + # Enable or disable signup for public users if [ $signup -eq 1 ] then @@ -152,6 +153,8 @@ else sign_boolean="true" sign="Yes" fi + + # Enable or disable two factor authentication support for users if [ $two_factor -eq 1 ] then diff --git a/scripts/restore b/scripts/restore old mode 100755 new mode 100644 diff --git a/scripts/upgrade b/scripts/upgrade old mode 100755 new mode 100644