mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-18 16:35:29 +00:00
13 lines
266 B
Bash
Executable File
13 lines
266 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function failed {
|
|
printf "ca-certificates test suite FAILED\n" >&1
|
|
exit 1
|
|
}
|
|
|
|
[ -d /host-etc/ssl/ ] || failed
|
|
[ -d /host-etc/ssl/certs ] || failed
|
|
[ -f /host-etc/ssl/certs/ca-certificates.crt ] || failed
|
|
|
|
printf "ca-certificates test suite PASSED\n" >&1
|