Skip to content

Commit 8b07b45

Browse files
committed
Don't use tput in postinstall
1 parent 9672245 commit 8b07b45

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

etc/postinstall

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
set -e
99

10-
BOLD=$(tput bold)
11-
NORMAL=$(tput sgr0)
1210
# update-alternatives --install /usr/bin/python python /usr/bin/python3 10
1311
PYTHON=
1412
python3_inst=`type -p python3`
@@ -115,7 +113,7 @@ do
115113
done
116114
[ $numusers -gt 1 ] && {
117115
# Create a selection dialog to allow user to select USER
118-
PS3="${BOLD}Please enter SSH user (numeric or text): ${NORMAL}"
116+
PS3="Please enter SSH user (numeric or text): "
119117
options=(${users} "None")
120118
select opt in "${options[@]}"
121119
do

0 commit comments

Comments
 (0)