From ff430e9f6a5ea978e4aa3c63482b02846fb1775f Mon Sep 17 00:00:00 2001 From: ZhongShengping Date: Sun, 22 Jan 2017 21:28:47 +0800 Subject: [PATCH] Add oslo::db to dependency chain All db settings should be applied and all releated packages should be installed before dbsync starts. Change-Id: I342409a7a6af9d340457cf57db2a13d41029a60e --- manifests/deps.pp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/deps.pp b/manifests/deps.pp index 4c92de0c..b10d232f 100644 --- a/manifests/deps.pp +++ b/manifests/deps.pp @@ -24,6 +24,10 @@ class barbican::deps { ~> Service<| tag == 'barbican-service' |> ~> anchor { 'barbican::service::end': } + # all db settings should be applied and all packages should be installed + # before dbsync starts + Oslo::Db<||> -> Anchor['barbican::dbsync::begin'] + # policy config should occur in the config block also. Anchor['barbican::config::begin'] -> Openstacklib::Policy::Base<||>