aboutsummaryrefslogtreecommitdiffstats
path: root/roles/cgit/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/cgit/tasks/main.yml')
-rw-r--r--roles/cgit/tasks/main.yml20
1 files changed, 10 insertions, 10 deletions
diff --git a/roles/cgit/tasks/main.yml b/roles/cgit/tasks/main.yml
index 4559708..245b34f 100644
--- a/roles/cgit/tasks/main.yml
+++ b/roles/cgit/tasks/main.yml
@@ -1,12 +1,12 @@
- name: install cgit packages
- package:
+ ansible.builtin.package:
name:
- cgit
- lowdown
state: present
- name: create cgit cache directory
- file:
+ ansible.builtin.file:
path: "{{ cgit_chroot_dir }}/cache/cgit"
owner: www
group: www
@@ -14,25 +14,25 @@
state: directory
- name: generate cgit configuration files
- template:
+ ansible.builtin.template:
src: "{{ item.template }}"
dest: "{{ item.file }}"
owner: 0
group: 0
mode: 0644
loop:
- - template: cgitrc.j2
+ - ansible.builtin.template: cgitrc.j2
file: "{{ cgit_chroot_dir }}/conf/cgitrc"
- - template: footer.html.j2
+ - ansible.builtin.template: footer.html.j2
file: "{{ cgit_chroot_dir }}/conf/footer.html"
- - template: httpd.conf.j2
+ - ansible.builtin.template: httpd.conf.j2
file: /etc/httpd.d/cgit.conf
- name: include dependencies for lowdown
- include_tasks: dependencies.yml
+ ansible.builtin.include_tasks: dependencies.yml
- name: copy about-filter generator
- copy:
+ ansible.builtin.copy:
src: about-filter.sh
dest: "{{ cgit_chroot_dir }}/bin/about-filter.sh"
owner: 0
@@ -40,13 +40,13 @@
mode: 0755
- name: start and enable slowcgi service
- service:
+ ansible.builtin.service:
name: slowcgi
state: restarted
enabled: true
- name: httpd password information
- debug:
+ ansible.builtin.debug:
msg: |
Please provide a password using htpasswd,
in "{{ cgit_chroot_dir }}/htpasswd/cgit"
remember that computers suck.