diff --git a/plugins/module_utils/podman/podman_container_lib.py b/plugins/module_utils/podman/podman_container_lib.py index febc19e..f4c7a33 100644 --- a/plugins/module_utils/podman/podman_container_lib.py +++ b/plugins/module_utils/podman/podman_container_lib.py @@ -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']]