dont sleep before showing flags

Signed-off-by: Thomas Sjögren <konstruktoid@users.noreply.github.com>
This commit is contained in:
Thomas Sjögren 2015-09-05 15:51:51 +02:00
parent 1655718e12
commit a0f66dba13

View file

@ -52,13 +52,6 @@ yell "# ------------------------------------------------------------------------
# https://benchmarks.cisecurity.org/tools2/docker/CIS_Docker_1.6_Benchmark_v1.0.0.pdf
# ------------------------------------------------------------------------------"
# Warn if not root
ID=$(id -u)
if [ "x$ID" != "x0" ]; then
warn "Some tests might require root to run"
sleep 3
fi
# Get the flags
# If you add an option here, please
# remember to update usage() above.
@ -71,6 +64,13 @@ do
esac
done
# Warn if not root
ID=$(id -u)
if [ "x$ID" != "x0" ]; then
warn "Some tests might require root to run"
sleep 3
fi
if [ -z "$logger" ]; then
logger="${myname}.log"
fi