aboutsummaryrefslogtreecommitdiffstats
path: root/manifests/profile/pacemaker/haproxy_bundle.pp
diff options
context:
space:
mode:
authorMichele Baldessari <michele@acksyn.org>2017-07-13 14:18:44 +0200
committerMichele Baldessari <michele@acksyn.org>2017-07-13 14:18:44 +0200
commit7f78fa1bc20ecafe618fcbc045493337a3d8813b (patch)
tree650619e889064978cb24c7c8f83181dc314d30e2 /manifests/profile/pacemaker/haproxy_bundle.pp
parentdbc3c765e5747a526ef154f0497e136a8c8cdfb4 (diff)
Fix typo in haproxy bundle
Change I6f4d3a5abae8f1781cfe6f69ff960aad500061e3 slipped in a typo and it removed the '$' character from a puppet manifest. Which causes a deployment to fail with: INFO: running container haproxy-bundle-docker-0 for the first time ERROR: /usr/bin/docker-current: Error response from daemon: Invalid bind mount spec "deployed_ssl_cert_path:deployed_ssl_cert_path:ro": Invalid volume destination path: 'deployed_ssl_cert_path' mount path must be absolute.. See '/usr/bin/docker-current run --help'. ERROR: docker failed to launch container Change-Id: Ic602fd443d38482bf1f924531561b2174dc38293
Diffstat (limited to 'manifests/profile/pacemaker/haproxy_bundle.pp')
-rw-r--r--manifests/profile/pacemaker/haproxy_bundle.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/profile/pacemaker/haproxy_bundle.pp b/manifests/profile/pacemaker/haproxy_bundle.pp
index afe6f77..b785ea7 100644
--- a/manifests/profile/pacemaker/haproxy_bundle.pp
+++ b/manifests/profile/pacemaker/haproxy_bundle.pp
@@ -144,8 +144,8 @@ class tripleo::profile::pacemaker::haproxy_bundle (
'options' => 'rw',
},
'haproxy-cert' => {
- 'source-dir' => deployed_ssl_cert_path,
- 'target-dir' => deployed_ssl_cert_path,
+ 'source-dir' => $deployed_ssl_cert_path,
+ 'target-dir' => $deployed_ssl_cert_path,
'options' => 'ro',
},
},