diff --git a/cron/knot-restart.yaml b/cron/knot-restart.yaml new file mode 100644 index 0000000..ea43921 --- /dev/null +++ b/cron/knot-restart.yaml @@ -0,0 +1,12 @@ +--- +- name: Knot Restarts (EU/US) + hosts: eu,us + vars: + services: + - knot + tasks: + - name: Do thing + ansible.builtin.systemd_service: + state: restarted + name: knot + with_items: "{{ services }}"