File tree 1 file changed +8
-9
lines changed
1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 6
6
# project; use with other POSIX shells for Windows may require modification to
7
7
# this wrapper script.
8
8
9
+ echo " Easy-RSA starting.."
10
+
9
11
setup_path=" ${EASYRSA:- $PWD } "
10
12
export PATH=" $setup_path ;$setup_path /bin;$PATH "
11
13
export HOME=" $setup_path "
@@ -24,9 +26,8 @@ for f in $extern_list; do
24
26
echo " Your installation is incomplete and cannot function without the required"
25
27
echo " files."
26
28
echo " "
27
- echo " Press enter to exit."
28
29
# shellcheck disable=SC2162
29
- read
30
+ read -p " Press Enter or CTRL-C to exit. "
30
31
exit 1
31
32
fi
32
33
done
48
49
# Access denied
49
50
access_denied () {
50
51
echo " Access error: $1 "
51
- cat << "ACCESS_DENIED_MSG "
52
-
52
+ echo " \
53
53
To use Easy-RSA in a protected system directory, you must have
54
- full administrator privileges via Windows User Access Control.
55
-
56
- Press Enter or CTRL-C to exit.
57
- ACCESS_DENIED_MSG
54
+ full administrator privileges via Windows User Access Control."
55
+ echo " "
58
56
59
57
# shellcheck disable=SC2162
60
- read
58
+ read -p " Press Enter or CTRL-C to exit. "
61
59
exit 1
62
60
}
63
61
130
128
131
129
[ -f " $setup_path /easyrsa" ] || {
132
130
echo " Missing easyrsa script. Expected to find it at: $setup_path /easyrsa"
131
+ read -p " Press Enter or CTRL-C to exit."
133
132
exit 2
134
133
}
135
134
You can’t perform that action at this time.
0 commit comments