consul/scripts/verify_no_uuid.sh

14 lines
202 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2014-10-09 11:33:25 -07:00
grep GenerateUUID consul/state/state_store.go
RESULT=$?
2014-10-09 11:33:25 -07:00
if [ $RESULT -eq 0 ]; then
exit 1
fi
grep GenerateUUID consul/fsm.go
2014-10-09 11:33:25 -07:00
RESULT=$?
if [ $RESULT -eq 0 ]; then
exit 1
fi