Skip to content

Commit 93c1532

Browse files
authored
Fix health-startup-cmd (#809)
"--health-startup-command" is a wrong parameter. the correct syntax is "--health-startup-cmd"
1 parent eb46429 commit 93c1532

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/module_utils/podman/podman_container_lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ def addparam_healthcheck_start_period(self, c):
528528
self.params['healthcheck_start_period']]
529529

530530
def addparam_health_startup_cmd(self, c):
531-
return c + ['--health-startup-command', self.params['health_startup_cmd']]
531+
return c + ['--health-startup-cmd', self.params['health_startup_cmd']]
532532

533533
def addparam_health_startup_interval(self, c):
534534
return c + ['--health-startup-interval', self.params['health_startup_interval']]

0 commit comments

Comments
 (0)