-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdns
executable file
·71 lines (58 loc) · 938 Bytes
/
dns
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
68
69
70
71
#!/usr/bin/env bash
set -euo pipefail
assert_command() {
if ! type "${1}" >/dev/null 2>&1; then
echo "${2:-"command not found: ${1}"}"
exit 1
fi
}
assert_val() {
if [[ -z "${1}" ]]; then
echo "${2}"
exit 1
fi
}
assert_func() {
if ! declare -F "${1}" >/dev/null; then
echo "${2}"
exit 1
fi
}
_darwin_flush() {
sudo dscacheutil -flushcache
}
_darwin_restart() {
sudo killall -HUP mDNSResponder
}
_linux_flush() {
sudo resolvectl flush-caches
}
_linux_restart() {
sudo systemctl restart systemd-resolved
}
declare OS=""
case "${OSTYPE}" in
darwin*)
OS="darwin"
;;
linux*)
OS="linux"
;;
*)
echo "Unsupported OS!"
exit 1;;
esac
declare -r cmd="${1:-"help"}"
shift || true
case "${cmd}" in
help)
cat << HELP
USAGE:
dns flush
dns restart
HELP
exit 0
esac
declare -r func="_${OS}_${cmd}"
assert_func "${func}" "invalid command: ${cmd}"
$func $@