-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnmcli-cli-restart
executable file
·91 lines (73 loc) · 1.63 KB
/
nmcli-cli-restart
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/bin/bash
#
# nmcli-cli-restart
#
# Copyright (c) 2019 Jun Futagawa (jfut)
#
# This software is released under the MIT License.
# http://opensource.org/licenses/mit-license.php
ECHO_OR_EXECUTE="echo"
echo_or_execute() {
if [[ -z "${ECHO_OR_EXECUTE}" ]]; then
echo "Applying: ${@}"
eval ${@}
else
${ECHO_OR_EXECUTE} ${@}
fi
}
usage() {
cat << _EOF_
Usage:
$0 [-n] [-x] IF_NAME
Options:
-n No interface check (Default: check interface)
-x Run command (Default: echo only)
Examples:
$0 eno1
_EOF_
}
check() {
local IF_NAME=${1:-}
# Check interface
nmcli connection show "${IF_NAME}" > /dev/null 2>&1
RET=$?
if [[ ${RET} -ne 0 ]]; then
echo "Error: Target interface \"${IF_NAME}\" not found."
exit 1
fi
}
restart() {
local IF_NAME=${1:-}
# down and up
echo_or_execute "nmcli connection down \"${IF_NAME}\"; nmcli connection up \"${IF_NAME}\""
}
# Main
main() {
local NO_CHECK="no"
while getopts nxh OPT; do
case "${OPT}" in
"n" )
NO_CHECK="yes" ;;
"x" )
ECHO_OR_EXECUTE="" ;;
"h" )
usage
exit 0
;;
* )
usage
exit 1
;;
esac
done
shift $((OPTIND - 1))
[[ $# -lt 1 ]] && usage && exit 1
if [[ "${NO_CHECK}" = "no" ]]; then
check "${@}"
fi
if [[ "${ECHO_OR_EXECUTE}" = "echo" ]]; then
echo "# ${ECHO_OR_EXECUTE} only."
fi
restart "${@}"
}
[[ ${#BASH_SOURCE[@]} = 1 ]] && main "${@}"