Your IP : 10.1.73.149


Current Path : /proc/self/root/etc/profile.d/
Upload File :
Current File : //proc/self/root/etc/profile.d/getnews.sh

#!/bin/sh
gethostnews() {
	if [ -x /usr/bin/curl ]; then
	  /usr/bin/curl -s --connect-timeout 2 "$1" && touch /tmp/gotnews
	  return
	fi
	
	if [ -x /usr/bin/wget ]; then
	  /usr/bin/wget -qO- --connect-timeout 2 "$1" && touch /tmp/gotnews
	  return
	fi
}

case $- in
  *i*) [ ! -f /tmp/gotnews ] && gethostnews "https://news.contabo.com/host/vmi2433999" ;;
  *) return ;;
esac

unset -f gethostnews