From 95538793e111e4b4be2212cc5ca0b414c0f20788 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Wed, 1 Jun 2016 11:15:27 +0200 Subject: [PATCH] multi_instance value should boolean type in the app's manifest --- packaging_apps_manifest.md | 4 ++-- packaging_apps_manifest_fr.md | 4 ++-- packaging_apps_multiinstance.md | 4 ++-- packaging_apps_multiinstance_fr.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packaging_apps_manifest.md b/packaging_apps_manifest.md index 95de6b77..18816734 100644 --- a/packaging_apps_manifest.md +++ b/packaging_apps_manifest.md @@ -18,9 +18,9 @@ The `manifest.json` file defines the app's constants, a bunch of values that Yun "email": "kload@kload.fr" }, "requirements": { - "yunohost": ">> 2.3.12" + "yunohost": ">= 2.4.0" }, - "multi_instance": "true", + "multi_instance": true, "services": [ "nginx", "php5-fpm", diff --git a/packaging_apps_manifest_fr.md b/packaging_apps_manifest_fr.md index 6b694989..4f3e152e 100644 --- a/packaging_apps_manifest_fr.md +++ b/packaging_apps_manifest_fr.md @@ -18,9 +18,9 @@ Le fichier `manifest.json` définit les constantes de l’application, un ensemb "email": "kload@kload.fr" }, "requirements": { - "yunohost": ">> 2.3.12" + "yunohost": ">= 2.4.0" }, - "multi_instance": "true", + "multi_instance": true, "services": [ "nginx", "php5-fpm", diff --git a/packaging_apps_multiinstance.md b/packaging_apps_multiinstance.md index 39226b7d..ed8842bb 100644 --- a/packaging_apps_multiinstance.md +++ b/packaging_apps_multiinstance.md @@ -16,5 +16,5 @@ APP=${!#} #### Manifest Set `multi_instance` variable to `true` in the [manifest](packaging_apps_manifest_en): ```json - "multi_instance": "true", -``` \ No newline at end of file + "multi_instance": true, +``` diff --git a/packaging_apps_multiinstance_fr.md b/packaging_apps_multiinstance_fr.md index 76b86a9f..180ab10d 100644 --- a/packaging_apps_multiinstance_fr.md +++ b/packaging_apps_multiinstance_fr.md @@ -17,5 +17,5 @@ APP=${!#} #### Manifeste Passer la variable `multi_instance` à `true` dans le [manifeste](packaging_apps_manifest_fr) : ```json - "multi_instance": "true", -``` \ No newline at end of file + "multi_instance": true, +```