consul/scripts/verify_no_uuid.sh
2016-02-01 22:48:59 -08:00

14 lines
194 B
Bash
Executable File

#!/bin/bash
grep GenerateUUID consul/state/state_store.go
RESULT=$?
if [ $RESULT -eq 0 ]; then
exit 1
fi
grep GenerateUUID consul/fsm.go
RESULT=$?
if [ $RESULT -eq 0 ]; then
exit 1
fi