open-consul/scripts/verify_no_uuid.sh

14 lines
194 B
Bash
Raw Normal View History

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