diff --git a/check_process b/check_process index 1ecfc80..d952d61 100644 --- a/check_process +++ b/check_process @@ -1,12 +1,9 @@ -# See here for more informations -# https://github.com/YunoHost/package_check#syntax-check_process-file - ;; Test complet ; Manifest - domain="domain.tld" (DOMAIN) - path="/path" (PATH) - admin="john" (USER) - is_public=1 (PUBLIC|public=1|private=0) + domain="domain.tld" + path="/path" + admin="john" + is_public=1 ; Checks pkg_linter=1 setup_sub_dir=1 @@ -18,7 +15,6 @@ upgrade=1 from_commit=231c5e281e9cafabd35d4a6ef3c27fec6f3c470f backup_restore=1 multi_instance=1 - port_already_use=0 change_url=0 ;;; Options Email=anmol@datamol.org diff --git a/manifest.json b/manifest.json index b6c5e74..9680306 100644 --- a/manifest.json +++ b/manifest.json @@ -15,12 +15,12 @@ "url": "https://datamol.org" }, "requirements": { - "yunohost": ">= 4.1.0" + "yunohost": ">= 4.2.0" }, "multi_instance": true, "services": [ "nginx", - "php7.0-fpm", + "php7.4-fpm", "mysql" ], "arguments": { @@ -28,38 +28,22 @@ { "name": "domain", "type": "domain", - "ask": { - "en": "Choose a domain for Firefly III", - "fr": "Choisissez un nom de domaine pour Firefly III" - }, "example": "example.com" }, { "name": "path", "type": "path", - "ask": { - "en": "Choose a path for Firefly III", - "fr": "Choisissez un chemin pour Firefly III" - }, "example": "/example", - "default": "/firefly" + "default": "/firefly" }, { "name": "admin", "type": "user", - "ask": { - "en": "Choose an admin user (should be a YunoHost registered user)", - "fr": "Choisissez l’administrateur (should be a YunoHost registered user)" - }, "example": "johndoe" }, { "name": "is_public", "type": "boolean", - "ask": { - "en": "Is it a public application?", - "fr": "Est-ce une application publique ?" - }, "default": true } ]