#!/bin/sh

sudo pvecm status | grep Quorate: | grep Yes > /dev/null

if [ $? -eq 0 ]; then
  echo "OK - the node is in quorum"
  exit 0
else
  echo "CRITICAL - the node is not in quorum"
  exit 2
fi
