From 6f6791966aed9a49414c1e6136d7b052da70da6e Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 16:30:01 +0100 Subject: [PATCH 1/9] remove site_name --- check_process | 1 - conf/config.ini | 18 +++++++++++------- manifest.json | 9 --------- scripts/install | 3 --- 4 files changed, 11 insertions(+), 20 deletions(-) diff --git a/check_process b/check_process index 337b148..ba5bb8c 100644 --- a/check_process +++ b/check_process @@ -11,7 +11,6 @@ is_public=1 (PUBLIC|public=1|private=0) password="pass" single_user="true" - site_name="WriteFreely" site_description="WriteFreely Blogs" open_registration="true" max_blogs="1" diff --git a/conf/config.ini b/conf/config.ini index feccda9..2e024c0 100644 --- a/conf/config.ini +++ b/conf/config.ini @@ -1,9 +1,13 @@ [server] -hidden_host = -port = __PORT__ -bind = localhost -tls_cert_path = -tls_key_path = +hidden_host = +port = __PORT__ +bind = localhost +tls_cert_path = +tls_key_path = +templates_parent_dir = +static_parent_dir = +pages_parent_dir = +keys_parent_dir = [database] type = mysql @@ -15,7 +19,7 @@ host = localhost port = 3306 [app] -site_name = __SITENAME__ +site_name = site_description = __SITEDESCRIPTION__ host = __DOMAIN_URL__ theme = write @@ -29,4 +33,4 @@ federation = __FEDERATION__ public_stats = __PUBLICSTATS__ private = __PRIVATE__ local_timeline = __LOCALTIMELINE__ - +user_invites = diff --git a/manifest.json b/manifest.json index 6be23b0..2df2997 100644 --- a/manifest.json +++ b/manifest.json @@ -72,15 +72,6 @@ }, "default": true }, - { - "name": "site_name", - "type": "string", - "ask": { - "en": "Choose a name for your WriteFreely instance", - "fr": "Choisissez un nom pour votre instance WriteFreely" - }, - "default": "WriteFreely" - }, { "name": "site_description", "type": "string", diff --git a/scripts/install b/scripts/install index d4df1dd..78f1d3b 100755 --- a/scripts/install +++ b/scripts/install @@ -43,7 +43,6 @@ is_public=$YNH_APP_ARG_IS_PUBLIC #language=$YNH_APP_ARG_LANGUAGE password=$YNH_APP_ARG_PASSWORD single_user=$YNH_APP_ARG_SINGLE_USER -site_name=$YNH_APP_ARG_SITE_NAME site_description=$YNH_APP_ARG_SITE_DESCRIPTION open_registration=$YNH_APP_ARG_OPEN_REGISTRATION max_blogs=$YNH_APP_ARG_MAX_BLOGS @@ -97,7 +96,6 @@ ynh_app_setting_set $app admin $admin ynh_app_setting_set $app is_public $is_public #ynh_app_setting_set $app language $language ynh_app_setting_set $app single_user $single_user -ynh_app_setting_set $app site_name $site_name ynh_app_setting_set $app site_description $site_description ynh_app_setting_set $app open_registration $open_registration ynh_app_setting_set $app max_blogs $max_blogs @@ -277,7 +275,6 @@ ynh_replace_string "__DBPWD__" "$db_pwd" "$final_path/config.ini" ynh_replace_string "__PORT__" "$port" "$final_path/config.ini" ynh_replace_string "__DOMAIN_URL__" "https://$domain$path_url" "$final_path/config.ini" ynh_replace_string "__SINGLEUSER__" "$single_user" "$final_path/config.ini" -ynh_replace_string "__SITENAME__" "$site_name" "$final_path/config.ini" ynh_replace_string "__SITEDESCRIPTION__" "$site_description" "$final_path/config.ini" ynh_replace_string "__OPENREGISTRATION__" "$open_registration" "$final_path/config.ini" ynh_replace_string "__MAXBLOGS__" "$max_blogs" "$final_path/config.ini" From 87c751c231f68958e61ff4c0364cbff19c8b357a Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 16:33:54 +0100 Subject: [PATCH 2/9] remove site_description --- check_process | 1 - conf/config.ini | 2 +- manifest.json | 10 ---------- scripts/install | 3 --- 4 files changed, 1 insertion(+), 15 deletions(-) diff --git a/check_process b/check_process index ba5bb8c..196377e 100644 --- a/check_process +++ b/check_process @@ -11,7 +11,6 @@ is_public=1 (PUBLIC|public=1|private=0) password="pass" single_user="true" - site_description="WriteFreely Blogs" open_registration="true" max_blogs="1" federation="true" diff --git a/conf/config.ini b/conf/config.ini index 2e024c0..bd12e6e 100644 --- a/conf/config.ini +++ b/conf/config.ini @@ -20,7 +20,7 @@ port = 3306 [app] site_name = -site_description = __SITEDESCRIPTION__ +site_description = host = __DOMAIN_URL__ theme = write disable_js = false diff --git a/manifest.json b/manifest.json index 2df2997..94cf662 100644 --- a/manifest.json +++ b/manifest.json @@ -72,16 +72,6 @@ }, "default": true }, - { - "name": "site_description", - "type": "string", - "ask": { - "en": "Choose a description for your WriteFreely instance", - "fr": "Choisissez une description pour votre instance WriteFreely" - }, - "default": "WriteFreely_Blogs" - }, - { "name": "open_registration", "type": "boolean", "ask": { diff --git a/scripts/install b/scripts/install index 78f1d3b..4bb28d0 100755 --- a/scripts/install +++ b/scripts/install @@ -43,7 +43,6 @@ is_public=$YNH_APP_ARG_IS_PUBLIC #language=$YNH_APP_ARG_LANGUAGE password=$YNH_APP_ARG_PASSWORD single_user=$YNH_APP_ARG_SINGLE_USER -site_description=$YNH_APP_ARG_SITE_DESCRIPTION open_registration=$YNH_APP_ARG_OPEN_REGISTRATION max_blogs=$YNH_APP_ARG_MAX_BLOGS federation=$YNH_APP_ARG_FEDERATION @@ -96,7 +95,6 @@ ynh_app_setting_set $app admin $admin ynh_app_setting_set $app is_public $is_public #ynh_app_setting_set $app language $language ynh_app_setting_set $app single_user $single_user -ynh_app_setting_set $app site_description $site_description ynh_app_setting_set $app open_registration $open_registration ynh_app_setting_set $app max_blogs $max_blogs ynh_app_setting_set $app federation $federation @@ -275,7 +273,6 @@ ynh_replace_string "__DBPWD__" "$db_pwd" "$final_path/config.ini" ynh_replace_string "__PORT__" "$port" "$final_path/config.ini" ynh_replace_string "__DOMAIN_URL__" "https://$domain$path_url" "$final_path/config.ini" ynh_replace_string "__SINGLEUSER__" "$single_user" "$final_path/config.ini" -ynh_replace_string "__SITEDESCRIPTION__" "$site_description" "$final_path/config.ini" ynh_replace_string "__OPENREGISTRATION__" "$open_registration" "$final_path/config.ini" ynh_replace_string "__MAXBLOGS__" "$max_blogs" "$final_path/config.ini" ynh_replace_string "__FEDERATION__" "$federation" "$final_path/config.ini" From fd77ee0873d9399c1933084fffb031b66817b4b7 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 16:36:06 +0100 Subject: [PATCH 3/9] remove open_registration --- check_process | 1 - conf/config.ini | 2 +- manifest.json | 8 -------- scripts/install | 3 --- 4 files changed, 1 insertion(+), 13 deletions(-) diff --git a/check_process b/check_process index 196377e..e95a35d 100644 --- a/check_process +++ b/check_process @@ -11,7 +11,6 @@ is_public=1 (PUBLIC|public=1|private=0) password="pass" single_user="true" - open_registration="true" max_blogs="1" federation="true" public_stats="true" diff --git a/conf/config.ini b/conf/config.ini index bd12e6e..ff1d501 100644 --- a/conf/config.ini +++ b/conf/config.ini @@ -26,7 +26,7 @@ theme = write disable_js = false webfonts = true single_user = __SINGLEUSER__ -open_registration = __OPENREGISTRATION__ +open_registration = min_username_len = 3 max_blogs = __MAXBLOGS__ federation = __FEDERATION__ diff --git a/manifest.json b/manifest.json index 94cf662..ec48b68 100644 --- a/manifest.json +++ b/manifest.json @@ -71,14 +71,6 @@ "fr": "Souhaitez vous un blog pour un seul utilisateur?" }, "default": true - }, - "name": "open_registration", - "type": "boolean", - "ask": { - "en": "Are registrations opened to all ?", - "fr": "Les inscriptions sont t'elles ouvertes ?" - }, - "default": true }, { "name": "max_blogs", diff --git a/scripts/install b/scripts/install index 4bb28d0..1bc52b1 100755 --- a/scripts/install +++ b/scripts/install @@ -43,7 +43,6 @@ is_public=$YNH_APP_ARG_IS_PUBLIC #language=$YNH_APP_ARG_LANGUAGE password=$YNH_APP_ARG_PASSWORD single_user=$YNH_APP_ARG_SINGLE_USER -open_registration=$YNH_APP_ARG_OPEN_REGISTRATION max_blogs=$YNH_APP_ARG_MAX_BLOGS federation=$YNH_APP_ARG_FEDERATION public_stats=$YNH_APP_ARG_PUBLIC_STATS @@ -95,7 +94,6 @@ ynh_app_setting_set $app admin $admin ynh_app_setting_set $app is_public $is_public #ynh_app_setting_set $app language $language ynh_app_setting_set $app single_user $single_user -ynh_app_setting_set $app open_registration $open_registration ynh_app_setting_set $app max_blogs $max_blogs ynh_app_setting_set $app federation $federation ynh_app_setting_set $app public_stats $public_stats @@ -273,7 +271,6 @@ ynh_replace_string "__DBPWD__" "$db_pwd" "$final_path/config.ini" ynh_replace_string "__PORT__" "$port" "$final_path/config.ini" ynh_replace_string "__DOMAIN_URL__" "https://$domain$path_url" "$final_path/config.ini" ynh_replace_string "__SINGLEUSER__" "$single_user" "$final_path/config.ini" -ynh_replace_string "__OPENREGISTRATION__" "$open_registration" "$final_path/config.ini" ynh_replace_string "__MAXBLOGS__" "$max_blogs" "$final_path/config.ini" ynh_replace_string "__FEDERATION__" "$federation" "$final_path/config.ini" ynh_replace_string "__PUBLICSTATS__" "$public_stats" "$final_path/config.ini" From 417523991bf74bc5435d0ed4c218cc206ac1fe20 Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 16:46:29 +0100 Subject: [PATCH 4/9] remove max_blogs and federation parameters --- check_process | 2 -- conf/config.ini | 10 +++++----- manifest.json | 20 +------------------- scripts/install | 6 ------ scripts/upgrade | 6 ++++++ 5 files changed, 12 insertions(+), 32 deletions(-) diff --git a/check_process b/check_process index e95a35d..9fc202f 100644 --- a/check_process +++ b/check_process @@ -11,8 +11,6 @@ is_public=1 (PUBLIC|public=1|private=0) password="pass" single_user="true" - max_blogs="1" - federation="true" public_stats="true" private="false" local_timeline="true" diff --git a/conf/config.ini b/conf/config.ini index ff1d501..a6ff54f 100644 --- a/conf/config.ini +++ b/conf/config.ini @@ -19,17 +19,17 @@ host = localhost port = 3306 [app] -site_name = -site_description = +site_name = WriteFreely +site_description = WriteFreely_Blogs host = __DOMAIN_URL__ theme = write disable_js = false webfonts = true single_user = __SINGLEUSER__ -open_registration = +open_registration = true min_username_len = 3 -max_blogs = __MAXBLOGS__ -federation = __FEDERATION__ +max_blogs = 4 +federation = true public_stats = __PUBLICSTATS__ private = __PRIVATE__ local_timeline = __LOCALTIMELINE__ diff --git a/manifest.json b/manifest.json index ec48b68..ea0a3a4 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "For starting a minimalist, federated blog — or an entire community.", "fr": "Permet de créer un blog fédéré minimaliste ou une communauté entière." }, - "version": "0.8.1~ynh3", + "version": "0.8.1~ynh4", "url": "https://writefreely.org", "license": "free", "maintainer": { @@ -72,24 +72,6 @@ }, "default": true }, - { - "name": "max_blogs", - "type": "string", - "ask": { - "en": "How many blogs each user can create ?", - "fr": "Combien de blogs chaque utilisateur peut créer ?" - }, - "default": "3" - }, - { - "name": "federation", - "type": "boolean", - "ask": { - "en": "Is it federation enabled ?", - "fr": "Est-ce une application publique ?" - }, - "default": true - }, { "name": "public_stats", "type": "boolean", diff --git a/scripts/install b/scripts/install index 1bc52b1..f6324b3 100755 --- a/scripts/install +++ b/scripts/install @@ -43,8 +43,6 @@ is_public=$YNH_APP_ARG_IS_PUBLIC #language=$YNH_APP_ARG_LANGUAGE password=$YNH_APP_ARG_PASSWORD single_user=$YNH_APP_ARG_SINGLE_USER -max_blogs=$YNH_APP_ARG_MAX_BLOGS -federation=$YNH_APP_ARG_FEDERATION public_stats=$YNH_APP_ARG_PUBLIC_STATS private=$YNH_APP_ARG_PRIVATE local_timeline=$YNH_APP_ARG_LOCAL_TIMELINE @@ -94,8 +92,6 @@ ynh_app_setting_set $app admin $admin ynh_app_setting_set $app is_public $is_public #ynh_app_setting_set $app language $language ynh_app_setting_set $app single_user $single_user -ynh_app_setting_set $app max_blogs $max_blogs -ynh_app_setting_set $app federation $federation ynh_app_setting_set $app public_stats $public_stats ynh_app_setting_set $app private $private ynh_app_setting_set $app local_timeline $local_timeline @@ -271,8 +267,6 @@ ynh_replace_string "__DBPWD__" "$db_pwd" "$final_path/config.ini" ynh_replace_string "__PORT__" "$port" "$final_path/config.ini" ynh_replace_string "__DOMAIN_URL__" "https://$domain$path_url" "$final_path/config.ini" ynh_replace_string "__SINGLEUSER__" "$single_user" "$final_path/config.ini" -ynh_replace_string "__MAXBLOGS__" "$max_blogs" "$final_path/config.ini" -ynh_replace_string "__FEDERATION__" "$federation" "$final_path/config.ini" ynh_replace_string "__PUBLICSTATS__" "$public_stats" "$final_path/config.ini" ynh_replace_string "__PRIVATE__" "$private" "$final_path/config.ini" ynh_replace_string "__LOCALTIMELINE__" "$local_timeline" "$final_path/config.ini" diff --git a/scripts/upgrade b/scripts/upgrade index 57531be..3aa61c0 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -36,6 +36,12 @@ final_path=$(ynh_app_setting_get $app final_path) db_name=$(ynh_app_setting_get $app db_name) port=$(ynh_app_setting_get $app port) +ynh_app_setting_delete $app site_name +ynh_app_setting_delete $app site_description +ynh_app_setting_delete $app open_registration +ynh_app_setting_delete $app max_blogs +ynh_app_setting_delete $app federation + #================================================= # CHECK VERSION #================================================= From 51b3aeb4b5214840143f9ec9c3239764e2e7f70c Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 16:50:20 +0100 Subject: [PATCH 5/9] remove public_state and private parameters --- check_process | 3 --- conf/config.ini | 4 ++-- manifest.json | 18 ------------------ scripts/install | 6 ------ scripts/upgrade | 1 + 5 files changed, 3 insertions(+), 29 deletions(-) diff --git a/check_process b/check_process index 9fc202f..6be900f 100644 --- a/check_process +++ b/check_process @@ -7,12 +7,9 @@ ; Manifest domain="domain.tld" (DOMAIN) admin="john" (USER) - is_public=1 (PUBLIC|public=1|private=0) password="pass" single_user="true" - public_stats="true" - private="false" local_timeline="true" ; Checks pkg_linter=1 diff --git a/conf/config.ini b/conf/config.ini index a6ff54f..be3b108 100644 --- a/conf/config.ini +++ b/conf/config.ini @@ -30,7 +30,7 @@ open_registration = true min_username_len = 3 max_blogs = 4 federation = true -public_stats = __PUBLICSTATS__ -private = __PRIVATE__ +public_stats = true +private = false local_timeline = __LOCALTIMELINE__ user_invites = diff --git a/manifest.json b/manifest.json index ea0a3a4..3bb9011 100644 --- a/manifest.json +++ b/manifest.json @@ -72,24 +72,6 @@ }, "default": true }, - { - "name": "public_stats", - "type": "boolean", - "ask": { - "en": "Are federation stats public ?", - "fr": "Est-ce les statistiques de federation sont publiques ?" - }, - "default": true - }, - { - "name": "private", - "type": "boolean", - "ask": { - "en": "Are the instance metadata private ?", - "fr": "Est-ce les metadatas de l'instance sont privée ?" - }, - "default": false - }, { "name": "local_timeline", "type": "boolean", diff --git a/scripts/install b/scripts/install index f6324b3..7232836 100755 --- a/scripts/install +++ b/scripts/install @@ -43,8 +43,6 @@ is_public=$YNH_APP_ARG_IS_PUBLIC #language=$YNH_APP_ARG_LANGUAGE password=$YNH_APP_ARG_PASSWORD single_user=$YNH_APP_ARG_SINGLE_USER -public_stats=$YNH_APP_ARG_PUBLIC_STATS -private=$YNH_APP_ARG_PRIVATE local_timeline=$YNH_APP_ARG_LOCAL_TIMELINE ## Bypass package_checker name not compatible with writefreely @@ -92,8 +90,6 @@ ynh_app_setting_set $app admin $admin ynh_app_setting_set $app is_public $is_public #ynh_app_setting_set $app language $language ynh_app_setting_set $app single_user $single_user -ynh_app_setting_set $app public_stats $public_stats -ynh_app_setting_set $app private $private ynh_app_setting_set $app local_timeline $local_timeline #================================================= @@ -267,8 +263,6 @@ ynh_replace_string "__DBPWD__" "$db_pwd" "$final_path/config.ini" ynh_replace_string "__PORT__" "$port" "$final_path/config.ini" ynh_replace_string "__DOMAIN_URL__" "https://$domain$path_url" "$final_path/config.ini" ynh_replace_string "__SINGLEUSER__" "$single_user" "$final_path/config.ini" -ynh_replace_string "__PUBLICSTATS__" "$public_stats" "$final_path/config.ini" -ynh_replace_string "__PRIVATE__" "$private" "$final_path/config.ini" ynh_replace_string "__LOCALTIMELINE__" "$local_timeline" "$final_path/config.ini" #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 3aa61c0..2fb4b99 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -41,6 +41,7 @@ ynh_app_setting_delete $app site_description ynh_app_setting_delete $app open_registration ynh_app_setting_delete $app max_blogs ynh_app_setting_delete $app federation +ynh_app_setting_delete $app public_stats #================================================= # CHECK VERSION From fc11c6034722442105e5e5b9945e08234b4aed0b Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 16:52:38 +0100 Subject: [PATCH 6/9] remove local_timeline --- check_process | 3 +-- conf/config.ini | 2 +- manifest.json | 9 --------- scripts/install | 3 --- scripts/upgrade | 1 + 5 files changed, 3 insertions(+), 15 deletions(-) diff --git a/check_process b/check_process index 6be900f..20daaad 100644 --- a/check_process +++ b/check_process @@ -9,8 +9,7 @@ admin="john" (USER) is_public=1 (PUBLIC|public=1|private=0) password="pass" - single_user="true" - local_timeline="true" + single_user="true" ; Checks pkg_linter=1 setup_sub_dir=0 diff --git a/conf/config.ini b/conf/config.ini index be3b108..0cb9ec9 100644 --- a/conf/config.ini +++ b/conf/config.ini @@ -32,5 +32,5 @@ max_blogs = 4 federation = true public_stats = true private = false -local_timeline = __LOCALTIMELINE__ +local_timeline = true user_invites = diff --git a/manifest.json b/manifest.json index 3bb9011..9296d91 100644 --- a/manifest.json +++ b/manifest.json @@ -71,15 +71,6 @@ "fr": "Souhaitez vous un blog pour un seul utilisateur?" }, "default": true - }, - { - "name": "local_timeline", - "type": "boolean", - "ask": { - "en": "Do you want to add a local timeline ?", - "fr": "Voulez vous afficher une timeline locale ?" - }, - "default": false } ] } diff --git a/scripts/install b/scripts/install index 7232836..5d5d916 100755 --- a/scripts/install +++ b/scripts/install @@ -43,7 +43,6 @@ is_public=$YNH_APP_ARG_IS_PUBLIC #language=$YNH_APP_ARG_LANGUAGE password=$YNH_APP_ARG_PASSWORD single_user=$YNH_APP_ARG_SINGLE_USER -local_timeline=$YNH_APP_ARG_LOCAL_TIMELINE ## Bypass package_checker name not compatible with writefreely if [ "$admin" = "package_checker" ] @@ -90,7 +89,6 @@ ynh_app_setting_set $app admin $admin ynh_app_setting_set $app is_public $is_public #ynh_app_setting_set $app language $language ynh_app_setting_set $app single_user $single_user -ynh_app_setting_set $app local_timeline $local_timeline #================================================= # STANDARD MODIFICATIONS @@ -263,7 +261,6 @@ ynh_replace_string "__DBPWD__" "$db_pwd" "$final_path/config.ini" ynh_replace_string "__PORT__" "$port" "$final_path/config.ini" ynh_replace_string "__DOMAIN_URL__" "https://$domain$path_url" "$final_path/config.ini" ynh_replace_string "__SINGLEUSER__" "$single_user" "$final_path/config.ini" -ynh_replace_string "__LOCALTIMELINE__" "$local_timeline" "$final_path/config.ini" #================================================= # STORE THE CONFIG FILE CHECKSUM diff --git a/scripts/upgrade b/scripts/upgrade index 2fb4b99..b51a1cb 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -42,6 +42,7 @@ ynh_app_setting_delete $app open_registration ynh_app_setting_delete $app max_blogs ynh_app_setting_delete $app federation ynh_app_setting_delete $app public_stats +ynh_app_setting_delete $app local_timeline #================================================= # CHECK VERSION From df784fe10199ed66b404003931b0c56029f1885c Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 16:54:07 +0100 Subject: [PATCH 7/9] Fix private parameter --- check_process | 2 +- scripts/upgrade | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/check_process b/check_process index 20daaad..4465da7 100644 --- a/check_process +++ b/check_process @@ -9,7 +9,7 @@ admin="john" (USER) is_public=1 (PUBLIC|public=1|private=0) password="pass" - single_user="true" + single_user="true" ; Checks pkg_linter=1 setup_sub_dir=0 diff --git a/scripts/upgrade b/scripts/upgrade index b51a1cb..d77f846 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -42,6 +42,7 @@ ynh_app_setting_delete $app open_registration ynh_app_setting_delete $app max_blogs ynh_app_setting_delete $app federation ynh_app_setting_delete $app public_stats +ynh_app_setting_delete $app private ynh_app_setting_delete $app local_timeline #================================================= From 4527fd6a0dcb75e102ebea19dbebbbb0ac4fe6aa Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 17:05:23 +0100 Subject: [PATCH 8/9] Fix single_user argument --- check_process | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_process b/check_process index 4465da7..a05e331 100644 --- a/check_process +++ b/check_process @@ -9,7 +9,7 @@ admin="john" (USER) is_public=1 (PUBLIC|public=1|private=0) password="pass" - single_user="true" + single_user=true ; Checks pkg_linter=1 setup_sub_dir=0 From 5a79218526991211867076dfd739b7131c45cbaf Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sun, 10 Feb 2019 17:07:33 +0100 Subject: [PATCH 9/9] Fix single_user argument --- check_process | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check_process b/check_process index a05e331..3cbc295 100644 --- a/check_process +++ b/check_process @@ -9,7 +9,7 @@ admin="john" (USER) is_public=1 (PUBLIC|public=1|private=0) password="pass" - single_user=true + single_user=1 ; Checks pkg_linter=1 setup_sub_dir=0