sbotools2

Maintenance fork of the original sbotools version 2
Log | Files | Refs | README

commit d40531ccf03b7b711dc1a87a5b89e0fda38fc690
parent 9c1dd523a63127053ad5e93519ffe63a515bd11f
Author: Jacob Pipkin <d4wnr4z0r@yahoo.com>
Date:   Sat, 26 May 2012 10:19:52 -0500

bug fix

Diffstat:
MSBO-Lib/lib/SBO/Lib.pm | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/SBO-Lib/lib/SBO/Lib.pm b/SBO-Lib/lib/SBO/Lib.pm @@ -73,7 +73,7 @@ for my $key (@valid_conf_keys) { if ($key eq 'SBO_HOME') { $config{$key} = '/usr/sbo' unless exists $config{$key}; } elsif ($key eq 'JOBS') { - $config{$key} = 'FALSE' unless $value =~ /^\d+$/; + $config{$key} = 'FALSE' unless $config{$key} =~ /^\d+$/; } else { $config{$key} = 'FALSE' unless exists $config{$key}; }