Fix dependency name for DB's creation manifests

Currently during creation DB for barbican service we have wrong
dependency on db-sync command: it has incorrect name. This patch
fixes this problem.

Change-Id: I7a51c1a3baae5fd96b75cc73acd4c8c3e2c4ade5
This commit is contained in:
Denis Egorenko 2016-08-05 12:26:43 +03:00
parent 31e84abe7f
commit 39d742bd66
2 changed files with 2 additions and 2 deletions

View File

@ -65,5 +65,5 @@ class barbican::db::mysql(
allowed_hosts => $allowed_hosts,
}
::Openstacklib::Db::Mysql['barbican'] ~> Exec<| title == 'barbican-manage db_sync' |>
::Openstacklib::Db::Mysql['barbican'] ~> Exec<| title == 'barbican-db-manage' |>
}

View File

@ -50,6 +50,6 @@ class barbican::db::postgresql(
privileges => $privileges,
}
::Openstacklib::Db::Postgresql['barbican'] ~> Exec<| title == 'barbican-manage db_sync' |>
::Openstacklib::Db::Postgresql['barbican'] ~> Exec<| title == 'barbican-db-manage' |>
}