From 5fa5c0ab15593de1b92b39febec45dcf1ec2c7b0 Mon Sep 17 00:00:00 2001 From: Lukas Bezdicka Date: Wed, 17 Jun 2015 13:40:40 +0200 Subject: [PATCH] [Cinder] set correct backup_swift_url Change-Id: Id45e88f5466e2ddb8fd3d17e5291bef8ef841ad1 Resolves: rhbz#1232198 --- packstack/puppet/templates/cinder_backup.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packstack/puppet/templates/cinder_backup.pp b/packstack/puppet/templates/cinder_backup.pp index a85dd1a68..dfd667a13 100644 --- a/packstack/puppet/templates/cinder_backup.pp +++ b/packstack/puppet/templates/cinder_backup.pp @@ -3,7 +3,7 @@ class { '::cinder::backup': } $cinder_backup_conf_ctrl_host = hiera('CONFIG_KEYSTONE_HOST_URL') class { '::cinder::backup::swift': - backup_swift_url => "http://${cinder_config_controller_host}:8080/v1/AUTH_", + backup_swift_url => "http://${cinder_backup_conf_ctrl_host}:8080/v1/AUTH_", } Class['cinder::api'] ~> Service['cinder-backup']