mirror of
https://github.com/docker/docker-bench-security.git
synced 2025-01-31 14:22:33 +01:00
13 lines
190 B
Bash
13 lines
190 B
Bash
|
#!/bin/sh
|
||
|
check_community() {
|
||
|
logit "\n"
|
||
|
info "X - Community contributed tests"
|
||
|
}
|
||
|
|
||
|
check_community_1() {
|
||
|
check_community_1="X.1 - Placeholder"
|
||
|
|
||
|
echo "This is just a placeholder."
|
||
|
}
|
||
|
|