diff options
Diffstat (limited to 'geo-replication/src')
-rwxr-xr-x | geo-replication/src/gverify.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/geo-replication/src/gverify.sh b/geo-replication/src/gverify.sh index f2295649571..c5593a39f11 100755 --- a/geo-replication/src/gverify.sh +++ b/geo-replication/src/gverify.sh @@ -24,7 +24,7 @@ function cmd_master() cmd_line=$(cat <<EOF function do_verify() { v=\$1; -d=\$(mktemp -d 2>/dev/null); +d=\$(mktemp -d -t ${0##*/}.XXXXXX 2>/dev/null); glusterfs -s localhost --xlator-option="*dht.lookup-unhashed=off" --volfile-id \$v -l $slave_log_file \$d; i=\$(stat -c "%i" \$d); if [[ "\$i" -ne "1" ]]; then @@ -80,7 +80,7 @@ function slave_stats() local ver; local status; - d=$(mktemp -d 2>/dev/null); + d=$(mktemp -d -t ${0##*/}.XXXXXX 2>/dev/null); glusterfs --xlator-option="*dht.lookup-unhashed=off" --volfile-server $SLAVEHOST --volfile-id $SLAVEVOL -l $slave_log_file $d; i=$(stat -c "%i" $d); if [[ "$i" -ne "1" ]]; then |