diff options
author | Arun Isaac | 2023-12-15 05:08:14 +0000 |
---|---|---|
committer | Arun Isaac | 2023-12-15 05:08:14 +0000 |
commit | 45e14d6b7718a11bb79373eb74978198113327c7 (patch) | |
tree | 83e1e3d9fc909adf16ba9bfd13717a1a1ff9c941 | |
parent | b7687cd9017312d08575131d23c4e0df4deb93f0 (diff) | |
download | guix-arunisaac-main.tar.gz guix-arunisaac-main.tar.lz guix-arunisaac-main.zip |
Prior to this, the local address was being wrongly written as the
local port.
* arunisaac/powerdns.scm (pdns-conf-gexp): Write local address
correctly.
Reported-by: jgart
-rw-r--r-- | arunisaac/powerdns.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arunisaac/powerdns.scm b/arunisaac/powerdns.scm index aa36e3f..4c6fe65 100644 --- a/arunisaac/powerdns.scm +++ b/arunisaac/powerdns.scm @@ -168,7 +168,7 @@ configuration. Each backend can be configured separately.") ((eq? expand-alias? 'unset) #f) (expand-alias? "yes") (else "no"))) - (write-setting port "local-port" #$local-address) + (write-setting port "local-address" #$local-address) (write-setting port "local-port" #$local-port) (write-setting port "socket-dir" #$socket-directory) (write-setting port "resolver" #$resolver) |