From 9c219d8167e8b43552dc8b771b45e0410acf14b7 Mon Sep 17 00:00:00 2001 From: lissav Date: Thu, 10 Nov 2011 18:45:51 +0000 Subject: [PATCH] dump no ISNM tables except isnm_config git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@10988 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-client/sbin/dumpxCATdb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/xCAT-client/sbin/dumpxCATdb b/xCAT-client/sbin/dumpxCATdb index cee67e827..77e84847b 100644 --- a/xCAT-client/sbin/dumpxCATdb +++ b/xCAT-client/sbin/dumpxCATdb @@ -68,7 +68,14 @@ foreach my $table (@output) } next; } - # skip and table in the site.skiptables attribute + # skip ISNM tables except isnm_config + if ( $table =~ /^isnm_perf/ ) { + if ($::DUMPVERBOSE) { + xCAT::MsgUtils->message("I", "Skipping $table\n"); + } + next; + } + # skip any table in the site.skiptables attribute if (grep(/^$table$/, @skiptbls)) { if ($::DUMPVERBOSE) { xCAT::MsgUtils->message("I", "Skipping $table\n");