blob: 91791e01c4d46afd38cac37f24f6598f1359fe0e (
plain)
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
|
diff --git a/Shorewall/lib.cli-std b/Shorewall/lib.cli-std
index 9896e18d4..2d8c7df67 100644
--- a/Shorewall/lib.cli-std
+++ b/Shorewall/lib.cli-std
@@ -1063,6 +1063,41 @@ restart_command() {
return $rc
}
+read_yesno_with_timeout() {
+ local timeout
+ timeout=${1:-60}
+
+ case $timeout in
+ *s)
+ ;;
+ *m)
+ timeout=$((${timeout%m} * 60))
+ ;;
+ *h)
+ timeout=$((${timeout%h} * 3600))
+ ;;
+ esac
+
+ read -t $timeout yn 2> /dev/null
+ if [ $? -eq 2 ]
+ then
+ # read doesn't support timeout
+ test -x /bin/bash || return 2 # bash is not installed so the feature is not available
+ /bin/bash -c "read -t $timeout yn ; if [ \"\$yn\" == \"y\" ] ; then exit 0 ; else exit 1 ; fi" # invoke bash and use its version of read
+ return $?
+ else
+ # read supports timeout
+ case "$yn" in
+ y|Y)
+ return 0
+ ;;
+ *)
+ return 1
+ ;;
+ esac
+ fi
+}
+
#
# Safe-start/safe-reload/safe-restart Command Executor
#
|