Skip to content

Commit

Permalink
script/ensure-no-404s: disregard ts.net. addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed Apr 17, 2024
1 parent 553c7df commit e284a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/ensure-no-404s
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -o pipefail
TEMPORARY_ALLOWLIST='^(radar|ping)\.'

python3 script/list-domains.py | \
egrep '^(CNAME|ALIAS|A)' | egrep -v '10\.0\.1' | egrep -v '(baymax|delwyn)\.' | \
egrep '^(CNAME|ALIAS|A)' | egrep -v '10\.0\.1' | egrep -v '(baymax|delwyn)\.' | egrep -v '\.ts\.net\.$' \
awk '{print $2}' | sort | uniq | \
egrep -v '^(imap|smtp|pop|webmail|email|\*)\.' | \
egrep -v "$TEMPORARY_ALLOWLIST" | \
Expand Down

0 comments on commit e284a98

Please sign in to comment.