mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-28 19:28:50 +00:00
tweaking
This commit is contained in:
parent
392fb9c344
commit
211894753f
1 changed files with 14 additions and 12 deletions
|
@ -206,22 +206,24 @@ DOCKER_OPTS="-r=false"
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Let's make sure only myFLAVOR images will be downloaded and started
|
# Let's make sure only myFLAVOR images will be downloaded and started
|
||||||
if [ "$myFLAVOR" = "HP" ]
|
case $myFLAVOR in
|
||||||
then
|
HP)
|
||||||
|
echo "### Preparing HONEYPOT flavor installation."
|
||||||
cp /root/tpot/data/imgcfg/hp_images.conf /root/tpot/data/images.conf
|
cp /root/tpot/data/imgcfg/hp_images.conf /root/tpot/data/images.conf
|
||||||
fi
|
;;
|
||||||
if [ "$myFLAVOR" = "INDUSTRIAL" ]
|
INDUSTRIAL)
|
||||||
then
|
echo "### Preparing INDUSTRIAL flavor installation."
|
||||||
cp /root/tpot/data/imgcfg/industrial_images.conf /root/tpot/data/images.conf
|
cp /root/tpot/data/imgcfg/industrial_images.conf /root/tpot/data/images.conf
|
||||||
fi
|
;;
|
||||||
if [ "$myFLAVOR" = "TPOT" ]
|
TPOT)
|
||||||
then
|
echo "### Preparing TPOT flavor installation."
|
||||||
cp /root/tpot/data/imgcfg/tpot_images.conf /root/tpot/data/images.conf
|
cp /root/tpot/data/imgcfg/tpot_images.conf /root/tpot/data/images.conf
|
||||||
fi
|
;;
|
||||||
if [ "$myFLAVOR" = "ALL" ]
|
ALL)
|
||||||
then
|
echo "### Preparing EVERYTHING flavor installation."
|
||||||
cp /root/tpot/data/imgcfg/all_images.conf /root/tpot/data/images.conf
|
cp /root/tpot/data/imgcfg/all_images.conf /root/tpot/data/images.conf
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
# Let's load docker images
|
# Let's load docker images
|
||||||
fuECHO "### Loading docker images. Please be patient, this may take a while."
|
fuECHO "### Loading docker images. Please be patient, this may take a while."
|
||||||
|
|
Loading…
Reference in a new issue