diff --git a/roles/bodhi2/backend/tasks/main.yml b/roles/bodhi2/backend/tasks/main.yml index 1a135ce1cf..74230f4f78 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 1f444ea016..cfa58c8ccf 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 b1ef2d25cb..f9d37a645a 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: