From 0a28ddd7c746eab24bb3c233ef01587cbf1f86e1 Mon Sep 17 00:00:00 2001 From: lavenderguiar Date: Sat, 27 Nov 2021 00:41:06 -0500 Subject: [PATCH] cleanup --- tasks/configure.yml | 68 ++++++++++++++++++++++----------------------- tasks/main.yml | 14 +++++----- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/tasks/configure.yml b/tasks/configure.yml index 835e41f..96c2554 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -1,41 +1,41 @@ --- -# - name: gitea | configure | daemonize gitea -# template: -# src: "etc/systemd/system/gitea.service.j2" -# dest: "/etc/systemd/system/gitea.service" -# owner: root -# group: root -# mode: 0644 -# become: yes -# notify: -# - Reload daemon +- name: gitea | configure | daemonize gitea + template: + src: "etc/systemd/system/gitea.service.j2" + dest: "/etc/systemd/system/gitea.service" + owner: root + group: root + mode: 0644 + become: yes + notify: + - Reload daemon -# - name: gitea | configure | write gitea app.ini -# template: -# src: "etc/gitea/app.ini.j2" -# dest: "/etc/gitea/app.ini" -# owner: root -# group: "{{ gitea__group }}" -# mode: 0770 -# become: yes -# notify: -# - Restart gitea +- name: gitea | configure | write gitea app.ini + template: + src: "etc/gitea/app.ini.j2" + dest: "/etc/gitea/app.ini" + owner: root + group: "{{ gitea__group }}" + mode: 0770 + become: yes + notify: + - Restart gitea -# - name: gitea | configure | write fail2ban filter config -# template: -# src: "etc/fail2ban/filter.d/gitea.conf.j2" -# dest: "/etc/fail2ban/filter.d/gitea.conf" -# become: yes -# notify: -# - Restart fail2ban +- name: gitea | configure | write fail2ban filter config + template: + src: "etc/fail2ban/filter.d/gitea.conf.j2" + dest: "/etc/fail2ban/filter.d/gitea.conf" + become: yes + notify: + - Restart fail2ban -# - name: gitea | configure | write fail2ban jail config -# template: -# src: "etc/fail2ban/jail.d/gitea.conf.j2" -# dest: "/etc/fail2ban/jail.d/gitea.conf" -# become: yes -# notify: -# - Restart fail2ban +- name: gitea | configure | write fail2ban jail config + template: + src: "etc/fail2ban/jail.d/gitea.conf.j2" + dest: "/etc/fail2ban/jail.d/gitea.conf" + become: yes + notify: + - Restart fail2ban - name: gitea | configure | write Gitea logrotate config template: diff --git a/tasks/main.yml b/tasks/main.yml index 9abdbfd..f711787 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -1,10 +1,10 @@ --- -# - include_tasks: install.yml +- include_tasks: install.yml - include_tasks: configure.yml -# - name: gitea | Ensure gitea is running and enabled on boot. -# systemd: -# name: gitea -# enabled: yes -# state: started -# become: yes \ No newline at end of file +- name: gitea | Ensure gitea is running and enabled on boot. + systemd: + name: gitea + enabled: yes + state: started + become: yes \ No newline at end of file