Fix for busybox timeout binary

This commit is contained in:
Samuel Kleiner 2015-03-13 11:58:23 +00:00
parent 606d7626db
commit 6db82374b4
1 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,7 @@ fi
# test that timeout or gtimeout (darwin) are present
TIMEOUTBIN="$(which timeout)"
if [ "$TIMEOUTBIN" == "" ]; then
TIMEOUTBIN="$(which gtimeout)"
if [ "$TIMEOUTBIN" == "" ]; then
@ -35,6 +36,12 @@ if [ "$TIMEOUTBIN" == "" ]; then
fi
fi
# Check for busybox, which has different arguments
TIMEOUTOUTPUT=$(($TIMEOUTBIN --help) 2>&1)
if [[ "$TIMEOUTOUTPUT" =~ BusyBox ]]; then
TIMEOUTBIN="$TIMEOUTBIN -t"
fi
# find a list of trusted CAs on the local system, or use the provided list
if [ -z "$CACERTS" ]; then
for f in /etc/pki/tls/certs/ca-bundle.crt /etc/ssl/certs/ca-certificates.crt; do