summaryrefslogtreecommitdiffstats
path: root/extras/geo-rep/get-gfid.sh
diff options
context:
space:
mode:
Diffstat (limited to 'extras/geo-rep/get-gfid.sh')
-rwxr-xr-xextras/geo-rep/get-gfid.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/extras/geo-rep/get-gfid.sh b/extras/geo-rep/get-gfid.sh
new file mode 100755
index 00000000..a4d609b0
--- /dev/null
+++ b/extras/geo-rep/get-gfid.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+
+ATTR_STR=`getfattr -h $1 -n glusterfs.gfid.string`
+GLFS_PATH=`echo $ATTR_STR | sed -e 's/# file: \(.*\) glusterfs.gfid.string*/\1/g'`
+GFID=`echo $ATTR_STR | sed -e 's/.*glusterfs.gfid.string="\(.*\)"/\1/g'`
+
+echo "$GFID $GLFS_PATH"