Skip to content

Commit

Permalink
Fix health-startup-cmd
Browse files Browse the repository at this point in the history
"--health-startup-command" is a wrong parameter.

the correct syntax is

"--health-startup-cmd"
  • Loading branch information
HolgerHees authored Jul 31, 2024
1 parent a7b89ba commit 9b5dd5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/module_utils/podman/podman_container_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ def addparam_healthcheck_start_period(self, c):
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']]
Expand Down

0 comments on commit 9b5dd5e

Please sign in to comment.