From ee43d795de8fff8ea4657226b97f22c188880d27 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Sat, 2 Jun 2018 18:20:37 +0300 Subject: Add: ick-notifier role --- roles/ick-notifier/tasks/main.yml | 32 ++++++++++++++++++++++ roles/ick-notifier/templates/notifications.yaml.j2 | 11 ++++++++ 2 files changed, 43 insertions(+) create mode 100644 roles/ick-notifier/tasks/main.yml create mode 100644 roles/ick-notifier/templates/notifications.yaml.j2 diff --git a/roles/ick-notifier/tasks/main.yml b/roles/ick-notifier/tasks/main.yml new file mode 100644 index 0000000..c0479b8 --- /dev/null +++ b/roles/ick-notifier/tasks/main.yml @@ -0,0 +1,32 @@ +- name: install notification packages + apt: + name: "{{ item }}" + with_items: + - "{{ ick_prefix }}ick2" + +- name: create config dirs + file: + state: directory + path: "{{ item }}" + owner: root + group: root + mode: 0755 + with_items: + - /etc/ick + +- name: install notification config + template: + src: notifications.yaml.j2 + dest: /etc/ick/notifications.yaml + owner: root + group: root + mode: 0644 + +- name: enable and start units + systemd: + daemon_reload: yes + name: "{{ item }}" + state: restarted + enabled: yes + with_items: + - notification_service diff --git a/roles/ick-notifier/templates/notifications.yaml.j2 b/roles/ick-notifier/templates/notifications.yaml.j2 new file mode 100644 index 0000000..6c0bd9c --- /dev/null +++ b/roles/ick-notifier/templates/notifications.yaml.j2 @@ -0,0 +1,11 @@ +token-issuer: "{{ qvisqve_url }}" +token-audience: localhost +token-public-key: "{{ token_public_key }}" +log: + - filename: /var/log/ickns/notification_service.log +from_addr: Lars Wirzenius +smtp_server: pieni.net +smtp_port: 587 +smtp_user: pienirelay +smtp_password: {{ smtp_password }} + -- cgit v1.2.1