diff options
| author | Matthieu Pignolet <m@mpgn.dev> | 2025-05-09 21:21:54 +0400 |
|---|---|---|
| committer | Matthieu Pignolet <m@mpgn.dev> | 2025-05-09 21:21:54 +0400 |
| commit | 3569734c00aa5a64333d88d39fc8c58e8b4b918e (patch) | |
| tree | 0de62392988ada59bc69da43409a625186db4a61 | |
| parent | b4cdcf2f8d987937285ecd0992bc7fb51e9cb2d5 (diff) | |
feat: remove special chars
| -rwxr-xr-x | 0-dump-root-zone.sh | 2 | ||||
| -rwxr-xr-x | 1-make-anchor.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/0-dump-root-zone.sh b/0-dump-root-zone.sh index 8c93b7d..b3d7cab 100755 --- a/0-dump-root-zone.sh +++ b/0-dump-root-zone.sh @@ -5,7 +5,7 @@ set -e # Empties the contents of the root dns file 0>work/db.root -# Prints a header for the root dns file +# Prints a header for the root dns file cat > work/db.root <<-EOF \$TTL 2d ; Default TTL for zone \$ORIGIN . diff --git a/1-make-anchor.sh b/1-make-anchor.sh index 9d04655..f44fa47 100755 --- a/1-make-anchor.sh +++ b/1-make-anchor.sh @@ -2,11 +2,11 @@ cd work -# Generate a key that will be used to sign the keys +# Generate a key that will be used to sign the keys # In out scenatio this will be used as a trusted root dnssec-keygen -f KSK -a ECDSA384 -b 4096 -n ZONE . cp *.key ../anchor.key dnssec-dsfromkey *.key > ../anchor.ds -# Generate a key that will be used to sign records +# Generate a key that will be used to sign records dnssec-keygen -a ECDSA384 -b 4096 -n ZONE .
\ No newline at end of file |
