blob: db69015ce1bb97dfbfc36945c8f0dc1270d49a54 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/bin/sh
if [ "$(ls db/dom/ | tr -d 'a-z0-9\n-' | wc -c | tr -d ' \t')" != 0 ]; then
echo "There's a bad TLD. You probably don't want to run any shell scripts." >&2
exit 1
fi
for tld in db/dom/* ; do
if [ "$(ls $tld/ | tr -d 'a-z0-9\n-' | wc -c | tr -d ' \t')" != 0 ]; then
tld="$(basename $tld)"
echo "There's a bad domain under $tld." >&2
echo "You probably don't want to run any shell scripts." >&2
exit 1
fi
for dom in $tld/* ; do
if [ "$(ls $dom/ns/ | tr -d 'a-z0-9\n.-' | wc -c | tr -d ' \t')" != 0 ]; then
domain="$(basename $dom).$(basename $tld)"
echo "There's a bad nameserver under $domain." >&2
echo "You probably don't want to run any shell scripts." >&2
exit 1
fi
for ns in $dom/ns/* ; do
if [ "$(cat $ns | tr -d '0-9.\r\n' | wc -c | tr -d ' \t')" != 0 ]; then
domain="$(basename $dom).$(basename $tld)"
nsname="$(basename $ns)"
echo "There's a bad nameserver IP under $domain, for" >&2
echo " $nsname" >&2
echo "You probably don't want to run any shell scripts." >&2
exit 1
fi
done
done
done
if [ "$(ls db/ip/ | tr -d 'A-F0-9\n' | wc -c | tr -d ' \t')" != 0 ]; then
echo "There's a bad first octet. You probably don't want to run any shell scripts." >&2
exit 1
for first in db/ip/* ; do
if [ "$(ls $first/ | tr -d 'A-F0-9\n' | wc -c | tr -d ' \t')" != 0 ]; then
echo "There's a bad second octet under $first." >&2
echo "You probably don't want to run any shell scripts." >&2
exit 1
for second in $first/* ; do
if [ "$(ls $second/ | tr -d 'A-F0-9\n' | wc -c | tr -d ' \t')" != 0 ]; then
echo "There's a bad third octet under $second." >&2
echo "You probably don't want to run any shell scripts." >&2
exit 1
fi
for third in $second/* ; do
if [ "$(ls $third/ns/ | tr -d 'a-z0-9\n.-' | wc -c | tr -d ' \t')" != 0 ]; then
ip="$(basename $first).$(basename $second).$(basename $third).0/24"
echo "There's a bad nameserver under $ip." >&2
echo "You probably don't want to run any shell scripts." >&2
exit 1
fi
for ns in $third/ns/* ; do
if [ "$(cat $ns | tr -d '0-9.\n' | wc -c | tr -d ' \t')" != 0 ]; then
ip="$(basename $first).$(basename $second).$(basename $third).0/24"
nsname="$(basename $ns)"
echo "There's a bad nameserver IP under $ip, for" >&2
echo " $nsname" >&2
echo "You probably don't want to run any shell scripts." >&2
exit 1
fi
done
done
done
fi
done
fi
|