From 8c0ee95189819e31b437f92f7afc07bb0e8ab1e4 Mon Sep 17 00:00:00 2001 From: antonc42 Date: Tue, 4 Jul 2017 23:55:49 -0500 Subject: [PATCH] Missing Pod::Usage dependency (#315) It is necessary to include the "Pod::Usage" module to use the "pod2usage" method. Otherwise, an error occurs if an incorrect CLI option is used. --- bin/netdisco-sshcollector | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/netdisco-sshcollector b/bin/netdisco-sshcollector index edb44063..8792d4c6 100755 --- a/bin/netdisco-sshcollector +++ b/bin/netdisco-sshcollector @@ -49,6 +49,7 @@ use Data::Printer; use Module::Load (); use Net::OpenSSH; use MCE::Loop Sereal => 1; +use Pod::Usage 'pod2usage'; use Getopt::Long; Getopt::Long::Configure ("bundling");