mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-28 19:28:50 +00:00
15 lines
461 B
Bash
Executable file
15 lines
461 B
Bash
Executable file
#!/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
|
|
tee /data/ews/conf/ews.ip << EOF
|
|
[MAIN]
|
|
ip = $myEXTIP
|
|
EOF
|
|
echo $myLOCALIP > /data/elk/logstash/mylocal.ip
|
|
chown tpot:tpot /data/ews/conf/ews.ip
|
|
if [ -f /var/run/check.lock ];
|
|
then rm /var/run/check.lock
|
|
fi
|