mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 01:27:27 -04:00
include emobility
This commit is contained in:
30
installer/data/upstart/emobility.conf
Normal file
30
installer/data/upstart/emobility.conf
Normal file
@ -0,0 +1,30 @@
|
||||
########################################################
|
||||
# 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
|
Reference in New Issue
Block a user