open-consul/scripts/verify_no_uuid.sh

9 lines
111 B
Bash
Raw Normal View History

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