2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-07-03 11:25:33 +00:00

Remove RC for each probe step

This commit is contained in:
Mark Gurevich
2016-09-26 15:35:19 -04:00
parent bb2c5be8eb
commit ad8ab9cb55

View File

@ -19,7 +19,6 @@ my $test;
my $output = "stdout";
my $verbose = 0;
my $rst = 0;
my $rc = 0;
$::USAGE = "Usage:
$program_name -h
@ -70,9 +69,8 @@ if (scalar(@ARGV) >= 1) {
}
# Run all osinage probe checks one after another
$rc = check_for_duplicate_rootimgdir();
$rc = check_for_valid_osimage_attributes();
exit $rc;
check_for_duplicate_rootimgdir();
check_for_valid_osimage_attributes();
# Check for osimage definitions with duplicate values for rootimgdir
sub check_for_duplicate_rootimgdir {