Skip to content

Commit

Permalink
Change _saveaccountconf to _saveaccountconf_mutable
Browse files Browse the repository at this point in the history
  • Loading branch information
sahsanu authored Oct 16, 2024
1 parent 1782eeb commit 6a9304d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dnsapi/dns_pdns.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ dns_pdns_add() {
fi

#save the api addr and key to the account conf file.
_saveaccountconf PDNS_Url "$PDNS_Url"
_saveaccountconf PDNS_ServerId "$PDNS_ServerId"
_saveaccountconf PDNS_Token "$PDNS_Token"
_saveaccountconf_mutable PDNS_Url "$PDNS_Url"
_saveaccountconf_mutable PDNS_ServerId "$PDNS_ServerId"
_saveaccountconf_mutable PDNS_Token "$PDNS_Token"

if [ "$PDNS_Ttl" != "$DEFAULT_PDNS_TTL" ]; then
_saveaccountconf PDNS_Ttl "$PDNS_Ttl"
_saveaccountconf_mutable PDNS_Ttl "$PDNS_Ttl"
fi

_debug "Detect root zone"
Expand Down

0 comments on commit 6a9304d

Please sign in to comment.