Fixed typo in entrypoint.sh (#86)

The entrypoint.sh had a typo where it tried coping files from "/kube-bench" instead of just "/".
pull/87/head
jerbia 6 years ago committed by GitHub
parent e7152265eb
commit cbe02e1d5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,8 +1,8 @@
#!/bin/sh
if [ -d /host ]; then
mkdir -p /host/cfg/
yes | cp -rf ./kube-bench/cfg/* /host/cfg/
yes | cp -rf ./kube-bench/kube-bench /host/
yes | cp -rf /cfg/* /host/cfg/
yes | cp -rf /kube-bench /host/
echo "==============================================="
echo "kube-bench is now installed on your host "
echo "Run ./kube-bench to perform a security check "

Loading…
Cancel
Save