diff options
author | markj <markj@FreeBSD.org> | 2017-06-14 00:39:43 +0800 |
---|---|---|
committer | markj <markj@FreeBSD.org> | 2017-06-14 00:39:43 +0800 |
commit | 4c6757af3d455dc70aed28a8f7f3ee54d9112778 (patch) | |
tree | 60b058d362e21819ff318a0581ce130eec8cd7ad | |
parent | d008858ad94ae09036c70d9fdae1d36f4bd94f4f (diff) | |
download | freebsd-ports-gnome-4c6757af3d455dc70aed28a8f7f3ee54d9112778.tar.gz freebsd-ports-gnome-4c6757af3d455dc70aed28a8f7f3ee54d9112778.tar.zst freebsd-ports-gnome-4c6757af3d455dc70aed28a8f7f3ee54d9112778.zip |
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
-rw-r--r-- | ftp/Makefile | 1 | ||||
-rw-r--r-- | ftp/netdumpd/Makefile | 22 | ||||
-rw-r--r-- | ftp/netdumpd/distinfo | 3 | ||||
-rw-r--r-- | ftp/netdumpd/pkg-descr | 7 |
4 files changed, 33 insertions, 0 deletions
diff --git a/ftp/Makefile b/ftp/Makefile index 360ef86c7427..bacfdba0e01f 100644 --- a/ftp/Makefile +++ b/ftp/Makefile @@ -47,6 +47,7 @@ SUBDIR += ncftp3 SUBDIR += ncftpd SUBDIR += net2ftp + SUBDIR += netdumpd SUBDIR += ocaml-ocurl SUBDIR += oftpd SUBDIR += omi diff --git a/ftp/netdumpd/Makefile b/ftp/netdumpd/Makefile new file mode 100644 index 000000000000..641b037d7aa8 --- /dev/null +++ b/ftp/netdumpd/Makefile @@ -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> diff --git a/ftp/netdumpd/distinfo b/ftp/netdumpd/distinfo new file mode 100644 index 000000000000..4e83f8cec91a --- /dev/null +++ b/ftp/netdumpd/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1497305077 +SHA256 (netdumpd-20170612.tar.gz) = debf517491d1a22eb5db428c01d1ef1a382982913385c92c87c65204d4cf06db +SIZE (netdumpd-20170612.tar.gz) = 14548 diff --git a/ftp/netdumpd/pkg-descr b/ftp/netdumpd/pkg-descr new file mode 100644 index 000000000000..e0cc73d7a5ca --- /dev/null +++ b/ftp/netdumpd/pkg-descr @@ -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 |