From f3188b990b21903dd3304f034365e9a572bc6d55 Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Wed, 22 Apr 2015 15:39:59 +0200 Subject: [PATCH 12/86] spec: fix/add pre-transaction scripts for geo-rep and cli packages The cli subpackage never had a %pretrans script, this has been added now. The %pretrans script for ge-repliaction was never included in the RPM package because it was disable by a undefined macro (_can_georeplicate). This macro is not used/set anywhere else and _without_georeplication should take care of it anyway. Note: This is a Red Hat Gluster Storage specific patch. Upstream packaging guidelines do not allow these kind of 'features'. Label: DOWNSTREAM ONLY Change-Id: I16aab5bba72f1ed178f3bcac47f9d8ef767cfcef Signed-off-by: Niels de Vos Signed-off-by: Bala.FA Reviewed-on: https://code.engineering.redhat.com/gerrit/50491 Reviewed-on: https://code.engineering.redhat.com/gerrit/60138 Tested-by: Milind Changire --- glusterfs.spec.in | 43 +++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 41 insertions(+), 2 deletions(-) diff --git a/glusterfs.spec.in b/glusterfs.spec.in index bc413b9..3f3d994 100644 --- a/glusterfs.spec.in +++ b/glusterfs.spec.in @@ -1476,6 +1476,47 @@ end +%pretrans cli -p +if not posix.access("/bin/bash", "x") then + -- initial installation, no shell, no running glusterfsd + return 0 +end + +-- TODO: move this completely to a lua script +-- For now, we write a temporary bash script and execute that. + +script = [[#!/bin/sh +pidof -c -o %PPID -x glusterfsd &>/dev/null + +if [ $? -eq 0 ]; then + pushd . > /dev/null 2>&1 + for volume in /var/lib/glusterd/vols/*; do cd $volume; + vol_type=`grep '^type=' info | awk -F'=' '{print $2}'` + volume_started=`grep '^status=' info | awk -F'=' '{print $2}'` + if [ $vol_type -eq 0 ] && [ $volume_started -eq 1 ] ; then + exit 1; + fi + done + + popd > /dev/null 2>&1 + exit 1; +fi +]] + +-- rpm in RHEL5 does not have os.tmpname() +-- io.tmpfile() can not be resolved to a filename to pass to bash :-/ +tmpname = "/tmp/glusterfs-cli_pretrans_" .. os.date("%s") +tmpfile = io.open(tmpname, "w") +tmpfile:write(script) +tmpfile:close() +ok, how, val = os.execute("/bin/bash " .. tmpname) +os.remove(tmpname) +if not (ok == 0) then + error("Detected running glusterfs processes", ok) +end + + + %pretrans devel -p if not posix.access("/bin/bash", "x") then -- initial installation, no shell, no running glusterfsd @@ -1558,7 +1599,6 @@ end -%if 0%{?_can_georeplicate} %if ( 0%{!?_without_georeplication:1} ) %pretrans geo-replication -p if not posix.access("/bin/bash", "x") then @@ -1599,7 +1639,6 @@ if not (ok == 0) then error("Detected running glusterfs processes", ok) end %endif -%endif -- 1.7.1