do not restore isnm tables, except isnm_config

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11013 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2011-11-15 12:13:36 +00:00
parent 1a1158403c
commit 7b3414cfa4

View File

@ -71,6 +71,14 @@ foreach my $table (@files)
}
next;
}
# skip ISNM tables except isnm_config
if ( $table =~ /^isnm_perf/ ) {
if ($::DUMPVERBOSE) {
xCAT::MsgUtils->message("I", "Skipping $table\n");
}
next;
}
# skip and table in the site.skiptables attribute
if (@skiptbls) {
my ($tmptable,$suffix) = split(/\./,$table);