다음 절의 예제 코드는 잘못되었습니다.
Sun Cluster Data Service for Solaris Containers Guide의 Writing a Zone Script
Sun Cluster Data Service for Solaris Containers Guide의 Writing an SMF Service Probe
상기 두 절의 올바른 코드는 다음과 같습니다.
# cat /var/tmp/probe-apache2
#!/usr/bin/ksh
if echo "GET; exit" | mconnect -p 80 > /dev/null 2>&1
then
exit 0
else
exit 100
fi