From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6203 invoked by alias); 7 Aug 2008 08:43:59 -0000 Received: (qmail 6197 invoked by alias); 7 Aug 2008 08:43:59 -0000 X-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,KAM_MX,SPF_HELO_PASS X-Spam-Check-By: sourceware.org X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on bastion.fedora.phx.redhat.com X-Spam-Level: Subject: STABLE2 - cman: make sure not to umount configfs when there are other users To: cluster-cvs-relay@redhat.com X-Project: Cluster Project X-Git-Module: cluster.git X-Git-Refname: refs/heads/STABLE2 X-Git-Reftype: branch X-Git-Oldrev: 35d6cd1658c743c9e0419a4fd9acd54397558490 X-Git-Newrev: 9a37dd3dee9819b8105916139a81e3070323e0b0 From: "Fabio M. Di Nitto" Message-Id: <20080807084250.E674A12003F@lists.fedorahosted.org> Date: Thu, 07 Aug 2008 18:08:00 -0000 X-Scanned-By: MIMEDefang 2.58 on 172.16.52.254 Mailing-List: contact cluster-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cluster-cvs-owner@sourceware.org X-SW-Source: 2008-q3/txt/msg00221.txt.bz2 Gitweb: http://git.fedorahosted.org/git/cluster.git?p=cluster.git;a=commitdiff;h=9a37dd3dee9819b8105916139a81e3070323e0b0 Commit: 9a37dd3dee9819b8105916139a81e3070323e0b0 Parent: 35d6cd1658c743c9e0419a4fd9acd54397558490 Author: Fabio M. Di Nitto AuthorDate: Thu Aug 7 10:37:13 2008 +0200 Committer: Fabio M. Di Nitto CommitterDate: Thu Aug 7 10:42:20 2008 +0200 cman: make sure not to umount configfs when there are other users Fix bugzilla: #457991 Signed-off-by: Fabio M. Di Nitto --- cman/init.d/cman.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cman/init.d/cman.in b/cman/init.d/cman.in index cc0618a..7c86f82 100644 --- a/cman/init.d/cman.in +++ b/cman/init.d/cman.in @@ -412,7 +412,7 @@ stop_configfs() { awk '{ print $2 }' /etc/mtab | grep "/sys/kernel/config" &> /dev/null\ && awk '{ print $3 }' /etc/mtab | grep "configfs" &> /dev/null - if [ $? -eq 0 ] + if [ $? -eq 0 ] && [ -z "$(ls -1 /sys/kernel/config)" ] then errmsg=$( /bin/umount /sys/kernel/config 2>&1 ) if [ $? -ne 0 ]