mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-24 15:16:17 +00:00
14 lines
198 B
Bash
14 lines
198 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
PORTS=$(netstat -lntup)
|
|
LINES=$(echo "${PORTS}" | wc -l)
|
|
if [ $((LINES > 2)) -ne 0 ]
|
|
then
|
|
echo "Ports test case FAILED"
|
|
echo "${PORTS}"
|
|
exit 1
|
|
fi
|
|
echo "Ports test case PASSED"
|