From 2e7b40f78e52530299e5c859b6adeba50df54446 Mon Sep 17 00:00:00 2001 From: Luke Hoersten Date: Sat, 24 Jul 2021 10:29:53 -0500 Subject: Updated versions: minecraft, miniflux, pleroma, writefreely, ergo-oragono. --- oragono/tasks/main.yaml | 65 ------------------------------------------------- 1 file changed, 65 deletions(-) delete mode 100644 oragono/tasks/main.yaml (limited to 'oragono/tasks/main.yaml') diff --git a/oragono/tasks/main.yaml b/oragono/tasks/main.yaml deleted file mode 100644 index f2c982d..0000000 --- a/oragono/tasks/main.yaml +++ /dev/null @@ -1,65 +0,0 @@ ---- - -- name: add oragono user - become: yes - user: name="oragono" - -- name: download oragono - become: yes - unarchive: - remote_src: yes - src: "{{oragono_url}}" - dest: "/tmp" - creates: "/tmp/{{oragono_tar_name}}/" - -- name: install oragono - become: yes - copy: - src: "/tmp/{{oragono_tar_name}}/oragono" - dest: "/usr/local/bin/" - remote_src: yes - owner: "root" - group: "root" - mode: "0755" - notify: restart oragono - -- name: create oragono dirs - become: yes - file: - path: "{{item}}/oragono" - owner: "oragono" - group: "oragono" - mode: "0755" - state: "directory" - loop: - - "/etc" - - "/var" - -- name: configure oragono - become: yes - template: - src: "oragono.yaml.j2" - dest: "/etc/oragono/oragono.yaml" - owner: "oragono" - group: "oragono" - mode: "0644" - notify: reload oragono - -- name: copy motd file - become: yes - copy: - src: "{{oragono_motd}}" - dest: "/etc/oragono/oragono.motd" - notify: reload oragono - -- name: install oragono service - become: yes - copy: - src: "oragono.service" - dest: "/lib/systemd/system/oragono.service" - mode: "0644" - notify: restart oragono - -- name: ensure oragono is started - become: yes - systemd: service="oragono.service" enabled="yes" state="started" daemon_reload="yes" -- cgit v1.2.3