summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLakshmipathi <lakshmipathi@gluster.com>2011-05-30 07:44:40 +0000
committerAnand Avati <avati@gluster.com>2011-05-31 10:18:00 -0700
commitef39bf9d233b39ea616e62b52ee6de69d06f9c8d (patch)
tree60acc588bf053671689ac430b30b70ff0a9d762c
parentff1b23feab95e4588c134d1c180ae69e14627915 (diff)
build : with rpm install invoke glusterd upgrade option to modify vol files and startv3.2.1qa1
Signed-off-by: Lakshmipathi.G <lakshmipathi@gluster.com> Signed-off-by: Anand Avati <avati@gluster.com> BUG: 2904 (glusterd should have upgrade/downgrade xlator options) URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2904
-rw-r--r--glusterfs.spec.in20
1 files changed, 20 insertions, 0 deletions
diff --git a/glusterfs.spec.in b/glusterfs.spec.in
index c07666f7a94..efed334a234 100644
--- a/glusterfs.spec.in
+++ b/glusterfs.spec.in
@@ -165,11 +165,31 @@ find %{buildroot}%{_libdir} -name '*.a' | xargs rm -f
echo "%{_prefix}/lib64" > /etc/ld.so.conf.d/glusterfs.conf
/sbin/ldconfig
+if [ -d /etc/glusterd/vols ]; then
+#for each dir under vols, backup non-fuse .vol files as .Vol.old
+for file in `find /etc/glusterd/vols -type f ! -name *-fuse.vol `;
+do
+grep ".vol" $file &> /dev/null && fname=`basename $file .vol` && dname=`dirname $file` && cp $file $dname/$fname.Vol.old
+done
+fi
+
pidof -c -o %PPID -x glusterd &> /dev/null
if [ $? -eq 0 ];
then
kill -9 `pgrep -f gsyncd.py` &> /dev/null
+
+killall glusterd &> /dev/null
+#add marker translator
+glusterd --xlator-option *.upgrade=on
+sleep 10
+killall glusterd &> /dev/null
+#start glusterd normally.
/etc/init.d/glusterd restart &> /dev/null
+
+else
+glusterd --xlator-option *.upgrade=on
+sleep 10
+killall glusterd &> /dev/null
fi
%postun core