From c89cf9065f25952f075fbd3ed41de69fb0b5441e Mon Sep 17 00:00:00 2001 From: Wim Nap Date: Mon, 16 Apr 2018 10:34:15 +0200 Subject: [PATCH] adding backslash to cinder-storage systemd-unitfile --- roles/cinder-storage/templates/cinder-storage.service | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/cinder-storage/templates/cinder-storage.service b/roles/cinder-storage/templates/cinder-storage.service index eb0cf21..14a6917 100644 --- a/roles/cinder-storage/templates/cinder-storage.service +++ b/roles/cinder-storage/templates/cinder-storage.service @@ -12,7 +12,7 @@ ExecStart=/usr/bin/docker run --name %n \ --privileged \ {{ env_vars | replace('\n', '') }} \ -v /srv/cinder-storage/root:/root \ - -v /srv/cinder-storage/etc/ceph:/etc/ceph + -v /srv/cinder-storage/etc/ceph:/etc/ceph \ -p 8777:8776 \ -p 3260:3260 \ {{ docker_image }}