add upx util

This commit is contained in:
Aleksandr Chebotov
2020-01-16 11:41:15 +03:00
parent 8e784a2c5a
commit a0b02cc7e0
2 changed files with 7 additions and 1 deletions

View File

@@ -31,6 +31,7 @@ apt-fast install -y --no-install-recommends \
telnet \
time \
unzip \
upx \
wget \
zip \
tzdata
@@ -54,7 +55,7 @@ apt-fast install -y --no-install-recommends \
# Run tests to determine that the software installed as expected
echo "Testing to make sure that script performed as expected, and basic scenarios work"
for cmd in curl file ftp jq netcat ssh rsync shellcheck sudo telnet time unzip wget zip; do
for cmd in curl file ftp jq netcat ssh rsync shellcheck sudo telnet time unzip upx wget zip; do
if ! command -v $cmd; then
echo "$cmd was not installed"
exit 1
@@ -83,6 +84,7 @@ DocumentInstalledItemIndent "sudo"
DocumentInstalledItemIndent "telnet"
DocumentInstalledItemIndent "time"
DocumentInstalledItemIndent "unzip"
DocumentInstalledItemIndent "upx"
DocumentInstalledItemIndent "wget"
DocumentInstalledItemIndent "zip"
DocumentInstalledItemIndent "tzdata"