From 7110df800b40f67ae7c4184f0236f316cc28907c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sj=C3=B6gren?= Date: Tue, 27 Aug 2019 16:11:38 +0200 Subject: [PATCH] section 8 docker enterprise skeleton MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Sjögren --- tests/8_docker_enterprise_configuration.sh | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 tests/8_docker_enterprise_configuration.sh diff --git a/tests/8_docker_enterprise_configuration.sh b/tests/8_docker_enterprise_configuration.sh new file mode 100644 index 0000000..56228fc --- /dev/null +++ b/tests/8_docker_enterprise_configuration.sh @@ -0,0 +1,40 @@ +#!/bin/sh + +check_8() { + logit "\n" + id_8="8" + desc_8="Docker Enterprise Configuration" + check_8="$id_8 - $desc_8" + info "$check_8" + startsectionjson "$id_8" "$desc_8" +} + +check_8_1() { + logit "\n" + id_8_1="8.1" + desc_8_1="Universal Control Plane Configuration" + check_8_1="$id_8_1 - $desc_8_1" + info "$check_8_1" + startsectionjson "$id_8_1" "$desc_8_1" +} + +check_8_1_end() { + endsectionjson +} + +check_8_2() { + logit "\n" + id_8_2="8.2" + desc_8_2="Docker Trusted Registry Configuration" + check_8_2="$id_8_2 - $desc_8_2" + info "$check_8_2" + startsectionjson "$id_8_2" "$desc_8_2" +} + +check_8_2_end() { + endsectionjson +} + +check_8_end() { + endsectionjson +}