Strict check on binaries needed: no busybox

When users try to reinvent the wheel and write an own dockerfile
this PR checks when binaries come from busybox -- as it is the
case with Alpine Linux.
This commit is contained in:
Dirk Wetter 2019-04-09 12:54:40 +02:00
parent a73fda7cf9
commit e0f8a2eea6

View File

@ -8442,7 +8442,7 @@ certificate_info() {
prln_svrty_medium ">= 5 years is too long"
fileout "cert_validityPeriod${json_postfix}" "MEDIUM" "$((diffseconds / 3600 * 24 )) days"
else
[[ "$DEBUG" -ge 1 ]] && outln "OK: below 5 years certificate life time"
[[ "$DEBUG" -ge 1 ]] && outln "${spaces}OK: below 5 years certificate life time"
fileout "cert_validityPeriod${json_postfix}" "INFO" "$((diffseconds / 3600 * 24 )) days"
fi
@ -18480,6 +18480,10 @@ check_base_requirements() {
if ! type -p "${binary}" &> /dev/null; then
fatal "You need to install ${binary} for this program to work" $ERR_RESOURCE
fi
"${binary}" --help 2>&1 | grep -ivq busybox
if [[ $? -ne 0 ]]; then
fatal "${binary} is from busybox. Please install a regular binary" $ERR_RESOURCE
fi
done
}