summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Fenzi <kevin@scrye.com>2017-04-13 18:35:36 +0000
committerKevin Fenzi <kevin@scrye.com>2017-04-13 18:35:43 +0000
commit058f6a84ecdeef6f7f86c44491eb247cc7582632 (patch)
tree4b0db2573e2d4c79210653107484edb1c79499ec
parent5d4f03b9b9442b67e333eaf40d2844189121cca7 (diff)
downloadansible-058f6a84ecdeef6f7f86c44491eb247cc7582632.tar.gz
ansible-058f6a84ecdeef6f7f86c44491eb247cc7582632.tar.xz
ansible-058f6a84ecdeef6f7f86c44491eb247cc7582632.zip
missed a few of these due to spacing
-rw-r--r--roles/bodhi2/backend/tasks/main.yml4
-rw-r--r--roles/httpd/domainrewrite/tasks/main.yml4
-rw-r--r--roles/httpd/reverseproxy/tasks/main.yml4
3 files changed, 6 insertions, 6 deletions
diff --git a/roles/bodhi2/backend/tasks/main.yml b/roles/bodhi2/backend/tasks/main.yml
index 1a135ce1c..74230f4f7 100644
--- a/roles/bodhi2/backend/tasks/main.yml
+++ b/roles/bodhi2/backend/tasks/main.yml
@@ -288,7 +288,7 @@
- name: setup basic /etc/bodhi/ contents (staging)
template: >
- src="{{roles}}/bodhi2/base/templates/staging.ini.j2"
+ src="{{ roles_path }}/bodhi2/base/templates/staging.ini.j2"
dest="/etc/bodhi/production.ini"
owner=apache
group=apache
@@ -302,7 +302,7 @@
- name: setup basic /etc/bodhi/ contents (production)
template: >
- src="{{roles}}/bodhi2/base/templates/production.ini.j2"
+ src="{{ roles_path }}/bodhi2/base/templates/production.ini.j2"
dest="/etc/bodhi/production.ini"
owner=apache
group=apache
diff --git a/roles/httpd/domainrewrite/tasks/main.yml b/roles/httpd/domainrewrite/tasks/main.yml
index 1f444ea01..cfa58c8cc 100644
--- a/roles/httpd/domainrewrite/tasks/main.yml
+++ b/roles/httpd/domainrewrite/tasks/main.yml
@@ -13,8 +13,8 @@
group=root
mode=0644
with_first_found:
- - "{{roles}}/httpd/domainrewrite/templates/domainrewrite.{{destname}}.conf"
- - "{{roles}}/httpd/domainrewrite/templates/domainrewrite.conf"
+ - "{{ roles_path }}/httpd/domainrewrite/templates/domainrewrite.{{destname}}.conf"
+ - "{{ roles_path }}/httpd/domainrewrite/templates/domainrewrite.conf"
notify:
- reload proxyhttpd
tags:
diff --git a/roles/httpd/reverseproxy/tasks/main.yml b/roles/httpd/reverseproxy/tasks/main.yml
index b1ef2d25c..f9d37a645 100644
--- a/roles/httpd/reverseproxy/tasks/main.yml
+++ b/roles/httpd/reverseproxy/tasks/main.yml
@@ -14,8 +14,8 @@
group=root
mode=0644
with_first_found:
- - "{{roles}}/httpd/reverseproxy/templates/reversepassproxy.{{destname}}.conf"
- - "{{roles}}/httpd/reverseproxy/templates/reversepassproxy.conf"
+ - "{{ roles_path }}/httpd/reverseproxy/templates/reversepassproxy.{{destname}}.conf"
+ - "{{ roles_path }}/httpd/reverseproxy/templates/reversepassproxy.conf"
notify:
- reload proxyhttpd
tags: