Skip to content

Instantly share code, notes, and snippets.

@nguyenthang98
Created September 24, 2020 22:54
Show Gist options
  • Select an option

  • Save nguyenthang98/157349bd585b66ecdd62a9fb6ee80c04 to your computer and use it in GitHub Desktop.

Select an option

Save nguyenthang98/157349bd585b66ecdd62a9fb6ee80c04 to your computer and use it in GitHub Desktop.
#!/bin/bash
ISMASTER=$(/usr/bin/mongo --quiet --eval 'db.isMaster().ismaster')
if [ "$ISMASTER" = "true" ]
then
exit 0
else
exit 2
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment