diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2022-12-17 18:26:11 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2022-12-17 18:29:39 +0100 |
commit | 1c48b355ef91758b000c74f37c3f31b3d6b237a7 (patch) | |
tree | 4a1c09bceaa72564a00fdd55fea347a9d4e02fd1 | |
parent | 1784dc5ddfb1e0bcc3415f8ca7be2691d1151454 (diff) | |
download | rules-1c48b355ef91758b000c74f37c3f31b3d6b237a7.tar.gz |
fix(roles/cgit): key was renamed after module name
-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 |