You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
# cat monit/conf.d/keystone.conf
# This file autogenerated by Chef
# Do not edit, changes will be overwritten
check process keystone matching "^((/usr/bin/)?python\d? )?(/usr/bin/)?keystone-all\b"
start program = "/usr/sbin/service keystone start"
stop program = "/usr/sbin/service keystone stop"
if failed host 10.240.0.1 port 35357 protocol HTTP then restart
if failed host 10.240.0.1 port 5000 protocol HTTP then restart
After the commit:
# cat monit2/conf.d/keystone.conf
# This file autogenerated by Chef
# Do not edit, changes will be overwritten
check process keystone matching "^((/usr/bin/)?python\d? )?(/usr/bin/)?keystone-all\b"
start program = "keystone"
stop program = "keystone"
if failed host 10.240.0.1 port 35357 protocol HTTP then restart
if failed host 10.240.0.1 port 5000 protocol HTTP then restart
3fcbfa5 introduced bug whereby service_bin, script_name, start_cmd and
stop_cmd must be explicitly specified by the resource.
This commit requires a resource to specify a script_name otherwise
start_program and stop_program supplied to the template are "".
Issue rcbops/chef-cookbooks#972
Issue rcbops/chef-cookbooks#860
3fcbfa5 introduced bug whereby service_bin, script_name, start_cmd and
stop_cmd must be explicitly specified by the resource.
This commit requires a resource to specify a script_name otherwise
start_program and stop_program supplied to the template are "".
Issue rcbops/chef-cookbooks#972
Issue rcbops/chef-cookbooks#860
Before the commit:
After the commit:
#860 tracks the history of the original bug.
The text was updated successfully, but these errors were encountered: