prepare for T-Pot 16.03

This commit is contained in:
marco
2015-12-08 15:47:39 +01:00
parent 0701b5f2f4
commit f06935fe63
72 changed files with 29029 additions and 459 deletions

View File

@ -1,6 +1,6 @@
T-Pot Community Edition (Beta)
Hostname: \n
IP:
T-Pot 16.03 (Alpha)
Hostname: \n
IP:
___________ _____________________________
@ -13,4 +13,3 @@ ___________ _____________________________
CTRL+ALT+F2 - Display current container status
CTRL+ALT+F1 - Return to this screen

View File

@ -1,6 +1,6 @@
#!/bin/sh -e
# Let's add the first local ip to the /etc/issue and ews.ip file
# export http_proxy=http://your.proxy.server:port/
#!/bin/bash
# Let's add the first local ip to the /etc/issue and external ip to ews.ip file
source /etc/environment
myLOCALIP=$(hostname -I | awk '{ print $1 }')
myEXTIP=$(curl myexternalip.com/raw)
sed -i "s#IP:.*#IP: $myLOCALIP, $myEXTIP#" /etc/issue
@ -12,5 +12,3 @@ chown tpot:tpot /data/ews/conf/ews.ip
if [ -f /var/run/check.lock ];
then rm /var/run/check.lock
fi
setupcon
exit 0