# create host RSA key if not there
if [ ! -f /etc/ssh/ssh_host_rsa_key ] || [ ! -f /etc/ssh/
ssh_host_rsa_key.pub ]; then
echo "Generating SSH2 RSA host key:
"
$KEYGEN -q -t rsa -f $RSA_KEY -C '' -N '' >/dev/
null
fi
# create host dsa key if not there
if [ ! -f /etc/ssh/ssh_host_dsa_key ] || [ ! -f /etc/ssh/
ssh_host_dsa_key.pub ]; then
echo "Generating SSH2 DSA host key:
"
$KEYGEN -q -t dsa -f $DSA_KEY -C '' -N '' >/dev/
null
fi