Skip to content

Commit 7cff994

Browse files
committed
Windows, easyrsa-shell-init.sh: Add prompts to 'read' before errors
Signed-off-by: Richard T Bonhomme <[email protected]>
1 parent 536d432 commit 7cff994

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

distro/windows/bin/easyrsa-shell-init.sh

+8-9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
# project; use with other POSIX shells for Windows may require modification to
77
# this wrapper script.
88

9+
echo "Easy-RSA starting.."
10+
911
setup_path="${EASYRSA:-$PWD}"
1012
export PATH="$setup_path;$setup_path/bin;$PATH"
1113
export HOME="$setup_path"
@@ -24,9 +26,8 @@ for f in $extern_list; do
2426
echo " Your installation is incomplete and cannot function without the required"
2527
echo " files."
2628
echo ""
27-
echo " Press enter to exit."
2829
#shellcheck disable=SC2162
29-
read
30+
read -p "Press Enter or CTRL-C to exit."
3031
exit 1
3132
fi
3233
done
@@ -48,16 +49,13 @@ done
4849
# Access denied
4950
access_denied() {
5051
echo "Access error: $1"
51-
cat << "ACCESS_DENIED_MSG"
52-
52+
echo "\
5353
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 ""
5856

5957
#shellcheck disable=SC2162
60-
read
58+
read -p "Press Enter or CTRL-C to exit."
6159
exit 1
6260
}
6361

@@ -130,6 +128,7 @@ fi
130128

131129
[ -f "$setup_path/easyrsa" ] || {
132130
echo "Missing easyrsa script. Expected to find it at: $setup_path/easyrsa"
131+
read -p "Press Enter or CTRL-C to exit."
133132
exit 2
134133
}
135134

0 commit comments

Comments
 (0)