mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-31 06:22:32 +01:00
Merge pull request #91 from MrSecure/29-tcp-required
check for TCP socket before checking for TLS
This commit is contained in:
commit
f2f1195550
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ fi
|
|||
|
||||
# 2.9
|
||||
check_2_9="2.9 - Configure TLS authentication for Docker daemon"
|
||||
get_command_line_args docker | grep "\-H" >/dev/null 2>&1
|
||||
get_command_line_args docker | tr "-" "\n" | grep -E '^(H|host)' | grep -vE '(unix|fd)://' >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
get_command_line_args docker | grep "tlsverify" | grep "tlskey" >/dev/null 2>&1
|
||||
if [ $? -eq 0 ]; then
|
||||
|
|
Loading…
Reference in a new issue