Improve cisco power automation scripts.

Add summary csv output, automatically create layer-3 connection,
rename some headers to match what customer requested.
This commit is contained in:
Ben Greear
2020-01-02 16:34:54 -08:00
parent 978610f695
commit eba4b5f74b
2 changed files with 115 additions and 24 deletions

View File

@@ -17,7 +17,12 @@ $SIG{ __WARN__ } = sub { Carp::confess( @_ ) };
# Un-buffer output
$| = 1;
use lib '/home/lanforge/scripts';
if ( -f "LANforge/Endpoint.pm" ) {
use lib "./";
}
else {
use lib '/home/lanforge/scripts';
}
use LANforge::Endpoint;
use LANforge::Port;
use LANforge::Utils;