diff --git a/hooks/heat_relations.py b/hooks/heat_relations.py index 66828cd..d2ad10d 100755 --- a/hooks/heat_relations.py +++ b/hooks/heat_relations.py @@ -87,7 +87,7 @@ def install(): @hooks.hook('config-changed') @restart_on_change(restart_map()) def config_changed(): - if openstack_upgrade_available('heat-engine'): + if openstack_upgrade_available('heat-common'): do_openstack_upgrade(CONFIGS) CONFIGS.write_all() configure_https() diff --git a/hooks/heat_utils.py b/hooks/heat_utils.py index 651d936..804c996 100644 --- a/hooks/heat_utils.py +++ b/hooks/heat_utils.py @@ -91,7 +91,7 @@ CONFIG_FILES = OrderedDict([ def register_configs(): - release = os_release('heat-engine') + release = os_release('heat-common') configs = templating.OSConfigRenderer(templates_dir=TEMPLATES, openstack_release=release)