Red Hat OpenShiftのlivenessProbeとして実行するシェルスクリプト(probe.sh)の記述例を以下に記載します。
#!/bin/sh /bin/ps -ef | /bin/grep /opt/FJSVisas/etc/HA/PRIMECLUSTER/IS_INSPECT | /bin/grep -v grep if [ $? -eq 0 ] ; then exit 0 else exit 1 fi