bstinson / centos / t_functional

Forked from centos/t_functional 3 years ago
Clone
Blob Blame History Raw
#!/bin/bash

# Author: Madhurranjan Mohaan <madhurranjan.mohaan@gmail.com>

t_Log "Running $0 - testing telnet against ssh port"
t_Log "Making sure port 22 is listening by calling ssh installer"
../p_openssh/0-install_sshd.sh

sshd_status=`service sshd status | grep running`
if ! [ "$sshd_status" ]
then
  service sshd start
fi

telnet_port_22=`telnet 127.0.0.1 22 << EOH
EOH`
echo $telnet_port_22 | grep "Escape character is '^]'"
t_CheckExitStatus $?