From 897067160a2e0f92017fc0ae2f7268dd0db74381 Mon Sep 17 00:00:00 2001 From: Tobias Urdin Date: Wed, 9 May 2018 11:11:02 +0200 Subject: [PATCH] Horizon dashboard install should trigger restart When a new horizon dashboard is installed horizon must be restarted to load the dashboard. This changes the deps file so that the service anchor is notified when a new dashboard package has been installed. Depends-On: https://review.openstack.org/#/c/564811/ Change-Id: I72183bdd960c43a49f92a3bdc6d4c8ca1e367fab --- manifests/deps.pp | 1 + 1 file changed, 1 insertion(+) diff --git a/manifests/deps.pp b/manifests/deps.pp index aff0526a..f24f43d8 100644 --- a/manifests/deps.pp +++ b/manifests/deps.pp @@ -39,4 +39,5 @@ class horizon::deps { # Installation or config changes will always restart services. Anchor['horizon::install::end'] ~> Anchor['horizon::service::begin'] Anchor['horizon::config::end'] ~> Anchor['horizon::service::begin'] + Anchor['horizon::dashboard::end'] ~> Anchor['horizon::service::begin'] }