From 18fd87795f092ffb0bbc37d7877f2e84ef3e20cc Mon Sep 17 00:00:00 2001 From: leseb Date: Mon, 27 Jul 2015 13:27:21 +0200 Subject: [PATCH] Fix templates file path fixes: #342 Signed-off-by: leseb --- roles/ceph-rgw/tasks/installs/install_debian.yml | 6 +++--- roles/ceph-rgw/tasks/installs/install_redhat.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/ceph-rgw/tasks/installs/install_debian.yml b/roles/ceph-rgw/tasks/installs/install_debian.yml index 6d39a4490..6fb23da63 100644 --- a/roles/ceph-rgw/tasks/installs/install_debian.yml +++ b/roles/ceph-rgw/tasks/installs/install_debian.yml @@ -106,7 +106,7 @@ - name: install default httpd.conf template: > - src=httpd.conf + src=../../templates/httpd.conf dest=/etc/apache2/httpd.conf owner=root group=root @@ -120,7 +120,7 @@ - name: install rados gateway vhost template: > - src=rgw.conf + src=../../templates/rgw.conf dest=/etc/apache2/sites-available/rgw.conf owner=root group=root @@ -137,7 +137,7 @@ - name: install s3gw.fcgi script template: > - src=s3gw.fcgi.j2 + src=../../templates/s3gw.fcgi.j2 dest=/var/www/s3gw.fcgi mode=0555 owner=root diff --git a/roles/ceph-rgw/tasks/installs/install_redhat.yml b/roles/ceph-rgw/tasks/installs/install_redhat.yml index 7531d10b3..79d10ee21 100644 --- a/roles/ceph-rgw/tasks/installs/install_redhat.yml +++ b/roles/ceph-rgw/tasks/installs/install_redhat.yml @@ -1,7 +1,7 @@ --- - name: add ceph extra template: > - src=ceph-extra.repo + src=../../templates/ceph-extra.repo dest=/etc/yum.repos.d owner=root group=root @@ -24,14 +24,14 @@ - name: install rados gateway vhost template: > - src=rgw.conf + src=../../templates/rgw.conf dest=/etc/httpd/conf.d/rgw.conf owner=root group=root - name: install s3gw.fcgi script template: > - src=s3gw.fcgi.j2 + src=../../templates/s3gw.fcgi.j2 dest=/var/www/s3gw.fcgi mode=0555 owner=root -- 2.39.5