From 48a70986b735f92bb8a8990c90dafc16e71a0eb6 Mon Sep 17 00:00:00 2001 From: daniceexi Date: Tue, 10 Apr 2012 17:24:29 +0000 Subject: [PATCH] fix the issue that rootimg/sys was not umounted by genimage git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@12185 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/rmimage.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xCAT-server/lib/xcat/plugins/rmimage.pm b/xCAT-server/lib/xcat/plugins/rmimage.pm index 79773163f..679d1a9a5 100644 --- a/xCAT-server/lib/xcat/plugins/rmimage.pm +++ b/xCAT-server/lib/xcat/plugins/rmimage.pm @@ -160,6 +160,8 @@ sub process_request { #some rpms like atftp mount the rootimg/proc to /proc, we need to make sure rootimg/proc is free of junk `umount -l $imagedir/rootimg/proc 2>&1 1>/dev/null`; + # also umount the rootimg/sys + `umount -l $imagedir/rootimg/sys 2>&1 1>/dev/null`; #Start removing the rootimg directory and files if (-d "$imagedir/rootimg") {