From 5b395ae747943d6032d16f07c9387c1bf1203f59 Mon Sep 17 00:00:00 2001 From: vallard Date: Thu, 12 Aug 2010 22:31:31 +0000 Subject: [PATCH] added a hook for the custom mod.tgz that if its already there not to update it, because it may have other updates in it already git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@7077 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/esx.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xCAT-server/lib/xcat/plugins/esx.pm b/xCAT-server/lib/xcat/plugins/esx.pm index 0d2717726..dd4761652 100644 --- a/xCAT-server/lib/xcat/plugins/esx.pm +++ b/xCAT-server/lib/xcat/plugins/esx.pm @@ -2880,6 +2880,9 @@ sub copycd { sub makecustomizedmod { my $osver = shift; my $dest = shift; + # if it already exists, do not overwrite it because it may be someone + # else's custom image + if(-f "$dest/mod.tgz"){ return 1; } my $passtab = xCAT::Table->new('passwd'); my $tmp; my $password;