mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-29 19:58:52 +00:00
31 lines
1.1 KiB
Text
31 lines
1.1 KiB
Text
![]() |
########################################################
|
||
|
# T-Pot Community Edition #
|
||
|
# Conpot upstart script #
|
||
|
# #
|
||
|
# v0.50 by msbeiti, DTAG, 2015-08-05 #
|
||
|
########################################################
|
||
|
|
||
|
description "emobility"
|
||
|
author "ms"
|
||
|
start on started docker and filesystem
|
||
|
stop on runlevel [!2345]
|
||
|
respawn
|
||
|
pre-start script
|
||
|
# Remove any existing emobility containers
|
||
|
myCID=$(docker ps -a | grep emobility | awk '{ print $1 }')
|
||
|
if [ "$myCID" != "" ];
|
||
|
then docker rm $myCID;
|
||
|
fi
|
||
|
# Remove any data from previous container
|
||
|
rm -rf /data/emobility/* || true
|
||
|
rm /data/ews/emobility/ews.json || true
|
||
|
mkdir -p /data/emobility/log /data/ews/emobility
|
||
|
chmod 760 /data/emobility -R
|
||
|
chown tpot:tpot /data/emobility -R
|
||
|
end script
|
||
|
script
|
||
|
# Delayed start to avoid rapid respawning
|
||
|
sleep $(((RANDOM % 5)+5))
|
||
|
/usr/bin/docker run --name emobility --cap-add=NET_ADMIN -p 8080:8080 -v /data/emobility:/data/eMobility -v /data/ews:/data/ews --rm=true dtagdevsec/emobility:latest1603
|
||
|
end script
|