Fix DNS server config for hermes
modules/config/dns.scm
27 | 27 | #:export (ipv4-reverse-master-zone | |
28 | 28 | ipv6-reverse-master-zone | |
29 | 29 | lepiller-master-zone | |
30 | - | master-acl | |
31 | - | slave-acl | |
32 | - | hermes | |
33 | - | ene)) | |
30 | + | lepiller-slave-zone | |
31 | + | master-acl | |
32 | + | slave-acl | |
33 | + | hermes | |
34 | + | ene)) | |
34 | 35 | ||
35 | 36 | (define-zone-entries lepiller.eu.zone | |
36 | 37 | ;; Name TTL Class Type Data | |
… | |||
94 | 95 | ||
95 | 96 | (define slave-acl | |
96 | 97 | (knot-acl-configuration | |
97 | - | (id "master-acl") | |
98 | + | (id "slave-acl") | |
98 | 99 | (address (list ene-ip4)) | |
99 | 100 | (key '("lepiller-key")) | |
100 | 101 | (action '(notify)))) |
systems/hermes.scm
41 | 41 | (service knot-service-type | |
42 | 42 | (knot-configuration | |
43 | 43 | (includes '("/etc/knot/secrets.conf")) | |
44 | - | (acls (list glave-acl)) | |
44 | + | (acls (list slave-acl)) | |
45 | 45 | (remotes (list ene)) | |
46 | 46 | (zones (list lepiller-slave-zone | |
47 | 47 | ipv4-reverse-master-zone |