diff options
-rw-r--r-- | roles/cgit/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/cgit/tasks/main.yml b/roles/cgit/tasks/main.yml index 272b199..64452f8 100644 --- a/roles/cgit/tasks/main.yml +++ b/roles/cgit/tasks/main.yml @@ -23,11 +23,11 @@ group: 0 mode: "0644" loop: - - ansible.builtin.template: cgitrc.j2 + - template: cgitrc.j2 file: "{{ cgit_chroot_dir }}/conf/cgitrc" - - ansible.builtin.template: footer.html.j2 + - template: footer.html.j2 file: "{{ cgit_chroot_dir }}/conf/footer.html" - - ansible.builtin.template: httpd.conf.j2 + - template: httpd.conf.j2 file: /etc/httpd.d/cgit.conf - name: include dependencies for lowdown |