9 lines
314 B
Bash
9 lines
314 B
Bash
CRYPT=$(whiptail --title "SSL SSH Support for Mystic" --radiolist --cancel-button Exit-Script "Choose Yes No" 8 58 2 \
|
|
"Yes" "Add ssl Support" ON \
|
|
"No" "Don't add ssl Support" OFF \
|
|
3>&1 1>&2 2>&3)
|
|
exitstatus=$?
|
|
if [ $exitstatus = 0 ]; then
|
|
echo -e "${DGN}Add ssl Support: ${BGN}$CRYPT${CL}"
|
|
fi
|