diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2008-02-27 22:09:37 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2008-02-27 22:09:37 +0000 |
commit | 4c86624fd0a6ed1dbe7c081bf1ba9505e25befc9 (patch) | |
tree | 8fa04549d4726634a3c6b078807c7eacbab36edb /net-mgmt/fetchconfig | |
parent | 54549b727da203c98cfc5b5541fd1c68c5bdb69a (diff) | |
download | ports-4c86624fd0a6ed1dbe7c081bf1ba9505e25befc9.tar.gz ports-4c86624fd0a6ed1dbe7c081bf1ba9505e25befc9.zip |
Add fetchconfig, a perl script for retrieving configuration of
various network devices such as:
* Cisco IOS
* Cisco Catalyst
* FortiGate
* ProCurve
* Parks
* Alcatel Ethernet Routers (Riverstone)
* Dell PowerConnect switches
* Old Terayon 3200/3500 CMTS
PR: 120843
Submitted by: salexanov at gmail.com
Notes
Notes:
svn path=/head/; revision=208024
Diffstat (limited to 'net-mgmt/fetchconfig')
-rw-r--r-- | net-mgmt/fetchconfig/Makefile | 46 | ||||
-rw-r--r-- | net-mgmt/fetchconfig/distinfo | 3 | ||||
-rw-r--r-- | net-mgmt/fetchconfig/files/patch-fetchconfig.pl | 20 | ||||
-rw-r--r-- | net-mgmt/fetchconfig/pkg-descr | 13 | ||||
-rw-r--r-- | net-mgmt/fetchconfig/pkg-plist | 15 |
5 files changed, 97 insertions, 0 deletions
diff --git a/net-mgmt/fetchconfig/Makefile b/net-mgmt/fetchconfig/Makefile new file mode 100644 index 000000000000..22573a918edc --- /dev/null +++ b/net-mgmt/fetchconfig/Makefile @@ -0,0 +1,46 @@ +# New ports collection makefile for: fetchconfig +# Date created: 21 December 2008 +# Whom: salexanov@gmail.com +# +# $FreeBSD$ +# + +PORTNAME= fetchconfig +PORTVERSION= 0.13 +CATEGORIES= net-mgmt +MASTER_SITES= ${MASTER_SITE_SAVANNAH} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= salexanov@gmail.com +COMMENT= Perl script for retrieving configuration of various network devices + +BUILD_DEPENDS= ${SITE_PERL}/Net/Telnet.pm:${PORTSDIR}/net/p5-Net-Telnet +RUN_DEPENDS= ${BUILD_DEPENDS} + +USE_PERL5= yes +NO_BUILD= yes + +MODULES= model/Abstract.pm model/CiscoCAT.pm model/CiscoIOS.pm \ + model/Dell.pm model/Detector.pm model/FortiGate.pm \ + model/Parks.pm model/ProCurve.pm model/Riverstone.pm \ + model/Terayon.pm Constants.pm Logger.pm +PORTDOCS= CHANGES README device_table.example + +post-patch: + @${REINPLACE_CMD} -e '1s|.*|#!${PERL} -w|' ${WRKSRC}/${PORTNAME}.pl + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.pl ${PREFIX}/bin/${PORTNAME} + ${MKDIR} ${SITE_PERL}/${PORTNAME}/model +.for f in ${MODULES} + ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}/${f} ${SITE_PERL}/${PORTNAME}/${f} +.endfor + +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/net-mgmt/fetchconfig/distinfo b/net-mgmt/fetchconfig/distinfo new file mode 100644 index 000000000000..d95f1bd58d13 --- /dev/null +++ b/net-mgmt/fetchconfig/distinfo @@ -0,0 +1,3 @@ +MD5 (fetchconfig-0.13.tar.gz) = 0d9356970b6e4c2a3d45a1439f7ef7d9 +SHA256 (fetchconfig-0.13.tar.gz) = 84cb7d2de5022048aa8935b78d044f0ad0ca4f22841c9ce69ea9190c11ca522c +SIZE (fetchconfig-0.13.tar.gz) = 22957 diff --git a/net-mgmt/fetchconfig/files/patch-fetchconfig.pl b/net-mgmt/fetchconfig/files/patch-fetchconfig.pl new file mode 100644 index 000000000000..c6694b7be1f7 --- /dev/null +++ b/net-mgmt/fetchconfig/files/patch-fetchconfig.pl @@ -0,0 +1,20 @@ +--- ./fetchconfig.pl.orig 2007-07-20 19:05:39.000000000 +0200 ++++ ./fetchconfig.pl 2008-02-27 22:58:14.000000000 +0100 +@@ -21,6 +21,8 @@ + # $Id: fetchconfig.pl,v 1.7 2007/07/20 17:05:39 evertonm Exp $ + + use strict; ++use FindBin; ++use lib "$FindBin::Bin/../lib"; + use fetchconfig::Logger; + use fetchconfig::Constants; + use fetchconfig::model::Detector; +@@ -64,7 +66,7 @@ + if (@device_file_list < 1) { + $log->error("at least one device list file is required"); + &usage; +- die; ++ exit 0; + } + + fetchconfig::model::Detector->init($log); diff --git a/net-mgmt/fetchconfig/pkg-descr b/net-mgmt/fetchconfig/pkg-descr new file mode 100644 index 000000000000..f8f1f4a2773c --- /dev/null +++ b/net-mgmt/fetchconfig/pkg-descr @@ -0,0 +1,13 @@ +Fetchconfig is a Perl script for retrieving configurations of various network +devices. It currently supports a variety of devices, such as: + + * Cisco IOS + * Cisco Catalyst + * FortiGate + * ProCurve + * Parks + * Alcatel Ethernet Routers (Riverstone) + * Dell PowerConnect switches + * Old Terayon 3200/3500 CMTS + +WWW: http://www.nongnu.org/fetchconfig/ diff --git a/net-mgmt/fetchconfig/pkg-plist b/net-mgmt/fetchconfig/pkg-plist new file mode 100644 index 000000000000..1f9175dfde27 --- /dev/null +++ b/net-mgmt/fetchconfig/pkg-plist @@ -0,0 +1,15 @@ +bin/fetchconfig +%%SITE_PERL%%/fetchconfig/model/Abstract.pm +%%SITE_PERL%%/fetchconfig/model/CiscoCAT.pm +%%SITE_PERL%%/fetchconfig/model/CiscoIOS.pm +%%SITE_PERL%%/fetchconfig/model/Dell.pm +%%SITE_PERL%%/fetchconfig/model/Detector.pm +%%SITE_PERL%%/fetchconfig/model/FortiGate.pm +%%SITE_PERL%%/fetchconfig/model/Parks.pm +%%SITE_PERL%%/fetchconfig/model/ProCurve.pm +%%SITE_PERL%%/fetchconfig/model/Riverstone.pm +%%SITE_PERL%%/fetchconfig/model/Terayon.pm +%%SITE_PERL%%/fetchconfig/Constants.pm +%%SITE_PERL%%/fetchconfig/Logger.pm +@dirrm %%SITE_PERL%%/fetchconfig/model +@dirrm %%SITE_PERL%%/fetchconfig |