-
Notifications
You must be signed in to change notification settings - Fork 271
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add upsert mode that can be used with import to only add/replace addi…
…tional records found in the file
- Loading branch information
Showing
7 changed files
with
71 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@ 86400 IN A 10.0.0.1 | ||
@ 86400 IN MX 10 mail.example.com. | ||
@ 86400 IN MX 20 mail2.example.com. | ||
@ 900 IN SOA ns1.somenameserver.com. blah.example.com. 1 7200 900 1209600 86400 | ||
@ 172800 IN NS ns1.somenameserver.com. | ||
@ 172800 IN NS ns2.somenameserver.com. | ||
@ 86400 IN TXT "v=spf1 a mx a:cli53.example.com mx:mail.example.com ip4:10.0.0.0/24 ~all" | ||
mail 86400 IN A 10.0.0.2 | ||
mail2 86400 IN A 10.0.0.3 | ||
test 86400 IN TXT "multivalued" " txt \"quoted\" record" | ||
www 86400 IN A 10.0.0.1 | ||
www2 86400 IN A 10.0.0.1 | ||
unchanged 86400 IN A 10.1.0.1 | ||
alias 86400 AWS ALIAS A www $self false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
test 86400 IN TXT "multivalued" " txt \"quoted\" record" | ||
www2 86400 IN A 10.0.0.5 | ||
www3 86400 IN A 10.0.0.5 | ||
unchanged 86400 IN A 10.1.0.1 | ||
alias 86400 AWS ALIAS A www $self false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@ 86400 IN A 10.0.0.1 | ||
@ 86400 IN MX 10 mail.example.com. | ||
@ 86400 IN MX 20 mail2.example.com. | ||
@ 900 IN SOA ns1.somenameserver.com. blah.example.com. 1 7200 900 1209600 86400 | ||
@ 172800 IN NS ns1.somenameserver.com. | ||
@ 172800 IN NS ns2.somenameserver.com. | ||
@ 86400 IN TXT "v=spf1 a mx a:cli53.example.com mx:mail.example.com ip4:10.0.0.0/24 ~all" | ||
mail 86400 IN A 10.0.0.2 | ||
mail2 86400 IN A 10.0.0.3 | ||
test 86400 IN TXT "multivalued" " txt \"quoted\" record" | ||
www 86400 IN A 10.0.0.1 | ||
www2 86400 IN A 10.0.0.5 | ||
www3 86400 IN A 10.0.0.5 | ||
unchanged 86400 IN A 10.1.0.1 | ||
alias 86400 AWS ALIAS A www $self false |