mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Fix known service list
This commit is contained in:
parent
247c78c95c
commit
a31bd52de2
1 changed files with 3 additions and 2 deletions
|
@ -262,8 +262,9 @@ def check_manifest(path):
|
||||||
"[YEP-2.1] \"multi_instance\" field must be boolean type values 'true' or 'false' and not string type")
|
"[YEP-2.1] \"multi_instance\" field must be boolean type values 'true' or 'false' and not string type")
|
||||||
|
|
||||||
if "services" in manifest:
|
if "services" in manifest:
|
||||||
services = ("nginx", "php5-fpm", "mysql", "uwsgi", "metronome",
|
services = ("nginx", "mysql", "uwsgi", "metronome",
|
||||||
"postfix", "dovecot") # , "rspamd", "rmilter")
|
"php5-fpm", "php7.0-fpm", "php-fpm",
|
||||||
|
"postfix", "dovecot", "rspamd")
|
||||||
|
|
||||||
for service in manifest["services"]:
|
for service in manifest["services"]:
|
||||||
if service not in services:
|
if service not in services:
|
||||||
|
|
Loading…
Reference in a new issue