mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-29 11:48:52 +00:00
16 lines
540 B
Bash
16 lines
540 B
Bash
![]() |
#!/bin/bash
|
||
|
|
||
|
########################################################
|
||
|
# T-Pot #
|
||
|
# Only start the container found in /etc/init/t-pot #
|
||
|
# #
|
||
|
# v0.01 by mo, DTAG, 2016-02-08 #
|
||
|
########################################################
|
||
|
|
||
|
rm -rf /etc/init/t-pot/*.conf || true
|
||
|
for i in $(cat /data/images.conf);
|
||
|
do
|
||
|
cp /data/upstart/"$i".conf /etc/init/t-pot/;
|
||
|
done
|
||
|
echo Please reboot for the changes to take effect.
|