mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-05-14 04:08:09 +00:00
fix for systems without syslinux-utils
This commit is contained in:
parent
88b1cd63ad
commit
d1b7774f1f
1 changed files with 5 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
# T-Pot #
|
# T-Pot #
|
||||||
# .ISO maker #
|
# .ISO maker #
|
||||||
# #
|
# #
|
||||||
# v16.03.3 by mo, DTAG, 2016-02-19 #
|
# v16.03.3 by mo, DTAG, 2016-02-26 #
|
||||||
########################################################
|
########################################################
|
||||||
|
|
||||||
# Let's define some global vars
|
# Let's define some global vars
|
||||||
|
@ -74,7 +74,10 @@ done
|
||||||
if [ "$myINST" != "" ]
|
if [ "$myINST" != "" ]
|
||||||
then
|
then
|
||||||
apt-get update -y
|
apt-get update -y
|
||||||
apt-get install $myINST -y
|
for myDEPS in $myINST;
|
||||||
|
do
|
||||||
|
apt-get install $myDEPS -y
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Let's ask if the user wants to run the script ...
|
# Let's ask if the user wants to run the script ...
|
||||||
|
|
Loading…
Reference in a new issue