From e44f06364a1de24ad16f91ba5c44e0c1e94f9d19 Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Fri, 6 Oct 2017 07:18:03 +0100 Subject: [PATCH] fix unknown command check in netdisco-do --- bin/netdisco-do | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/netdisco-do b/bin/netdisco-do index 418b386c..097ea511 100755 --- a/bin/netdisco-do +++ b/bin/netdisco-do @@ -139,7 +139,7 @@ foreach my $host (@hostlist) { $job->log("error running job: $_"); }; - if ($job->log eq 'check phase did not pass for this action') { + if ($job->log eq 'no worker succeeded during main phase') { pod2usage( -msg => (sprintf 'error: %s is not a valid action', $action), -verbose => 2,