Files
ansible/roles/nsd/tasks/cron.yml
VC 52794f1892
All checks were successful
ansible-lint / lint-everything (push) Successful in 2m4s
: nsd, the comeback
2025-04-04 08:23:16 +02:00

19 lines
356 B
YAML

---
- name: Install cron script
ansible.builtin.template:
src: resignall.sh.j2
dest: "{{ nsd_cron_script }}"
owner: root
group: root
mode: "0o750"
- name: Install cron
ansible.builtin.cron:
name: "NSD zone resign"
hour: "3"
minute: "2"
weekday: "3"
job: "{{ nsd_cron_script }} &> /dev/null"
state: present