diff options
author | Kai Knoblich <kai@FreeBSD.org> | 2019-02-24 13:43:29 +0000 |
---|---|---|
committer | Kai Knoblich <kai@FreeBSD.org> | 2019-02-24 13:43:29 +0000 |
commit | 09357bdf523e967b8e3747b3b2591f307f76f703 (patch) | |
tree | a4c68db8901842a54beeb8e564f5b3a97a56aa80 /net | |
parent | 93e4f1510956918f4f8a8d0ac31db42972a01891 (diff) |
Notes
Diffstat (limited to 'net')
-rw-r--r-- | net/parpd/Makefile | 4 | ||||
-rw-r--r-- | net/parpd/distinfo | 6 | ||||
-rw-r--r-- | net/parpd/files/parpd.in | 6 | ||||
-rw-r--r-- | net/parpd/pkg-descr | 4 |
4 files changed, 9 insertions, 11 deletions
diff --git a/net/parpd/Makefile b/net/parpd/Makefile index b631cc62b3bd..eb9ccf00afc8 100644 --- a/net/parpd/Makefile +++ b/net/parpd/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= parpd -DISTVERSION= 1.1 +DISTVERSION= 1.2 CATEGORIES= net MASTER_SITES= ftp://ftp.iks-jena.de/pub/mitarb/lutz/parpd/ @@ -13,8 +13,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= tar:tgz USE_RC_SUBR= parpd -NO_TEST= yes +NO_TEST= yes PLIST_FILES= sbin/parpd man/man8/parpd.8.gz do-install: diff --git a/net/parpd/distinfo b/net/parpd/distinfo index e3614356bc02..c9b1e775f598 100644 --- a/net/parpd/distinfo +++ b/net/parpd/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1510322377 -SHA256 (parpd-1.1.tgz) = 95318905767c1123eab87efa4fa664a57e5ed8f697802c6b7d5d0799ad8ea6e6 -SIZE (parpd-1.1.tgz) = 17197 +TIMESTAMP = 1550477955 +SHA256 (parpd-1.2.tgz) = 71f830d3d8ddafcabd7c6a0f7e6cdb848cc103ef4549ee4d7213fab7f6e438c0 +SIZE (parpd-1.2.tgz) = 25012 diff --git a/net/parpd/files/parpd.in b/net/parpd/files/parpd.in index aad054add9c6..eaafbfc7abc5 100644 --- a/net/parpd/files/parpd.in +++ b/net/parpd/files/parpd.in @@ -33,12 +33,10 @@ eval ": \${${name}_enable:='NO'}" eval ": \${${name}_flags:=%%PREFIX%%/etc/${name}.conf}" eval "config_file=\$${name}_flags" -[ -s "$config_file" ] || err 1 "Missing configuration file '$config_file'" - -if get_pidfile_from_conf pidfile "$config_file"; then +if [ -s "$config_file" ] && get_pidfile_from_conf pidfile "$config_file"; then pidfile="$_pidfile_from_conf" else - err 1 "$config_file does not specify an pidfile" + pidfile="/var/run/parpd.pid" fi eval "unset ${name}_flags" diff --git a/net/parpd/pkg-descr b/net/parpd/pkg-descr index 788c691ee07d..054871dfe079 100644 --- a/net/parpd/pkg-descr +++ b/net/parpd/pkg-descr @@ -1,5 +1,5 @@ -The parpd daemon provide the missing ARP packets in non-broadcast -multiple-access networks with overly strict first-hop security +The parpd daemon provide the missing IPV4-ARP and IPv6-ND packets in +non-broadcast multiple-access networks with overly strict first-hop security filters. WWW: https://lutz.donnerhacke.de/Projekte/parpd |