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
This commit is contained in:
lissav 2011-11-10 18:45:51 +00:00
parent 112f5aeebd
commit 9c219d8167

View File

@ -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");