mirror of
https://github.com/YunoHost/package_linter.git
synced 2024-09-03 20:06:12 +02:00
Enforce ynh_postgres_test_if_first_run and not yunohost service add
This commit is contained in:
parent
53894076da
commit
726bf2a81b
1 changed files with 5 additions and 1 deletions
|
@ -635,7 +635,11 @@ class App():
|
|||
|
||||
for service in manifest["services"]:
|
||||
if service not in known_services:
|
||||
if not self.scripts["install"].contains("yunohost service add %s" % service):
|
||||
if service == 'postgresql':
|
||||
if not self.scripts["install"].contains('ynh_psql_test_if_first_run')\
|
||||
or not self.scripts["restore"].contains('ynh_psql_test_if_first_run'):
|
||||
print_error("[YEP-2.1?] postgresql service present in the manifest, install and restore scripts must call ynh_psql_test_if_first_run")
|
||||
elif not self.scripts["install"].contains("yunohost service add %s" % service):
|
||||
print_error("[YEP-2.1?] " + service + " service not installed by the install file but present in the manifest")
|
||||
|
||||
if "install" in manifest["arguments"]:
|
||||
|
|
Loading…
Reference in a new issue