From 74b31073e4fdf4ee16f375916028936237b338a4 Mon Sep 17 00:00:00 2001 From: Corbin Bartsch Date: Sun, 10 Apr 2022 17:18:27 -0400 Subject: [PATCH] Fixed template paths --- tasks/apache2_template.yaml | 4 ++-- tasks/nginx_template.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/apache2_template.yaml b/tasks/apache2_template.yaml index 1bb1b6a..0162243 100644 --- a/tasks/apache2_template.yaml +++ b/tasks/apache2_template.yaml @@ -1,7 +1,7 @@ --- - name: Write directory-based nextcloud.conf file ansible.builtin.template: - src: templates/dhcpd.conf.j2 + src: dhcpd.conf.j2 dest: "{{ nextcloud_apache2_config_path }}" mode: '0644' become: true @@ -11,7 +11,7 @@ - name: Write virtualhost nextcloud.conf file ansible.builtin.template: - src: templates/apache2_virtualhost_nextcloud.conf.j2 + src: apache2_virtualhost_nextcloud.conf.j2 dest: "{{ nextcloud_apache2_config_path }}" mode: '0644' become: true diff --git a/tasks/nginx_template.yaml b/tasks/nginx_template.yaml index 827cf3f..35942d9 100644 --- a/tasks/nginx_template.yaml +++ b/tasks/nginx_template.yaml @@ -1,7 +1,7 @@ --- - name: Write nginx.conf file ansible.builtin.template: - src: templates/nginx.conf + src: nginx.conf dest: "{{ nextcloud_nginx_config_path }}" mode: '0644' become: true