Remove alert text if RSA type was selected

This commit is contained in:
Clemens Schwaighofer
2022-03-10 11:14:53 +09:00
parent d13dd08855
commit 12ef307bdb

View File

@@ -112,7 +112,7 @@ while read i; do
_ssh_keytype=$(echo "${i}" | cut -d ";" -f 6 | tr A-Z a-z | tr -d ' ');
if [ "${_ssh_keytype}" = "rsa" ]; then
ssh_keytype="${_ssh_keytype}";
echo "[!!] BACKWARDS COMPATIBLE RSA TYPE SELECTION [!!]";
#echo "[!!] BACKWARDS COMPATIBLE RSA TYPE SELECTION [!!]";
fi;
# user & group not set
if [ -z "${user}" ] || [ -z "${_group}" ]; then