1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-02-04 07:11:49 +00:00

Fix health-startup-cmd

"--health-startup-command" is a wrong parameter.

the correct syntax is

"--health-startup-cmd"
This commit is contained in:
Holger Hees 2024-07-31 08:57:03 +02:00 committed by GitHub
parent a7b89ba8fc
commit 9b5dd5efc1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -528,7 +528,7 @@ class PodmanModuleParams:
self.params['healthcheck_start_period']]
def addparam_health_startup_cmd(self, c):
return c + ['--health-startup-command', self.params['health_startup_cmd']]
return c + ['--health-startup-cmd', self.params['health_startup_cmd']]
def addparam_health_startup_interval(self, c):
return c + ['--health-startup-interval', self.params['health_startup_interval']]