You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
352 B
16 lines
352 B
10 months ago
|
#!/bin/sh
|
||
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
||
|
|
||
|
if [ "$centos_ver" -ge 8 ] ;then
|
||
|
exit 0
|
||
|
fi
|
||
|
t_Log "Running $0 - check that jwhois can connect to whois server and get the info."
|
||
|
|
||
|
# Dummy whois server
|
||
|
echo 'tf_jwhois_test_response' | nc -l 43 &
|
||
|
sleep 1
|
||
|
|
||
|
whois -h 127.0.0.1 domain.tld | grep -q 'tf_jwhois_test_response'
|
||
|
|
||
|
t_CheckExitStatus $?
|