Date: Tue, 13 Jun 2017 16:39:43 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443511 - in head/ftp: . netdumpd Message-ID: <201706131639.v5DGdhHj076542@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: markj (src committer) Date: Tue Jun 13 16:39:43 2017 New Revision: 443511 URL: https://svnweb.freebsd.org/changeset/ports/443511 Log: Add port ftp/netdumpd. This package contains a daemon which is used to receive kernel dumps over a network from a panicking kernel. The protocol uses UDP and is similar to TFTP. Client support for FreeBSD is currently in progress. Reviewed by: bdrewery Approved by: bdrewery Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D11165 Added: head/ftp/netdumpd/ head/ftp/netdumpd/Makefile (contents, props changed) head/ftp/netdumpd/distinfo (contents, props changed) head/ftp/netdumpd/pkg-descr (contents, props changed) Modified: head/ftp/Makefile Modified: head/ftp/Makefile ============================================================================== --- head/ftp/Makefile Tue Jun 13 16:29:40 2017 (r443510) +++ head/ftp/Makefile Tue Jun 13 16:39:43 2017 (r443511) @@ -47,6 +47,7 @@ SUBDIR += ncftp3 SUBDIR += ncftpd SUBDIR += net2ftp + SUBDIR += netdumpd SUBDIR += ocaml-ocurl SUBDIR += oftpd SUBDIR += omi Added: head/ftp/netdumpd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/netdumpd/Makefile Tue Jun 13 16:39:43 2017 (r443511) @@ -0,0 +1,22 @@ +# Created by: Mark Johnston <markj@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= netdumpd +PORTVERSION= 20170612 +CATEGORIES= ftp +MASTER_SITES= LOCAL/markj + +MAINTAINER= markj@FreeBSD.org +COMMENT= UDP server capable of handling netdump transfers + +LICENSE= BSD2CLAUSE + +IGNORE_FreeBSD_10= Depends on libcasper + +MAKE_ARGS+= BINDIR=${PREFIX}/sbin +MAKE_ARGS+= MANDIR=${PREFIX}/man/man +MAKE_ARGS+= SCRIPTSDIR=${PREFIX}/etc/rc.d + +PLIST_FILES= sbin/${PORTNAME} man/man8/${PORTNAME}.8.gz etc/rc.d/${PORTNAME} + +.include <bsd.port.mk> Added: head/ftp/netdumpd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/netdumpd/distinfo Tue Jun 13 16:39:43 2017 (r443511) @@ -0,0 +1,3 @@ +TIMESTAMP = 1497305077 +SHA256 (netdumpd-20170612.tar.gz) = debf517491d1a22eb5db428c01d1ef1a382982913385c92c87c65204d4cf06db +SIZE (netdumpd-20170612.tar.gz) = 14548 Added: head/ftp/netdumpd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/ftp/netdumpd/pkg-descr Tue Jun 13 16:39:43 2017 (r443511) @@ -0,0 +1,7 @@ +UDP server capable of handling netdump transfers + +This package contains a daemon which is used to receive +kernel dumps over a network from a panicking kernel. The +protocol uses UDP and is similar to TFTP. + +WWW: https://github.com/markjdb/netdumpd
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706131639.v5DGdhHj076542>