Bug 37996 - Add ospf6d support to zebractl
Summary: Add ospf6d support to zebractl
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: joe
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-05-12 17:00 UTC by Hajimu UMEMOTO
Modified: 2002-08-04 21:05 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Hajimu UMEMOTO freebsd_committer freebsd_triage 2002-05-12 17:00:14 UTC
	Current zebractl of ports/net/zebra doesn't support opsf6d.

Fix: Here is a patch:



--
Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan
ume@mahoroba.org  ume@bisd.hitachi.co.jp  ume@{,jp.}FreeBSD.org
http://www.imasy.org/~ume/--NxrCBfbUlKtyRAtpvfMgBa3U8K7zhNLKtK9HLez2GBDeGPxW
Content-Type: text/plain; name="file.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="file.diff"

Index: zebra/files/zebractl.sh
diff -u zebra/files/zebractl.sh.orig zebra/files/zebractl.sh
--- zebra/files/zebractl.sh.orig	Mon Sep 10 02:23:55 2001
+++ zebra/files/zebractl.sh	Mon May  6 01:25:23 2002
@@ -31,6 +31,8 @@
 			&& !!PREFIX!!/sbin/ripngd -d && echo -n ' ripngd'
 		[ -f !!PREFIX!!/etc/zebra/ospfd.conf ] \
 			&& !!PREFIX!!/sbin/ospfd -d && echo -n ' ospfd'
+		[ -f !!PREFIX!!/etc/zebra/ospf6d.conf ] \
+			&& !!PREFIX!!/sbin/ospf6d -d && echo -n ' ospf6d'
 		[ -f !!PREFIX!!/etc/zebra/bgpd.conf ] \
 			&& !!PREFIX!!/sbin/bgpd -d && echo -n ' bgpd'
 		;;
@@ -39,6 +41,7 @@
 		[ -f !!PREFIX!!/etc/zebra/ripd.conf ] && killall ripd
 		[ -f !!PREFIX!!/etc/zebra/ripngd.conf ] && killall ripngd
 		[ -f !!PREFIX!!/etc/zebra/ospfd.conf ] && killall ospfd
+		[ -f !!PREFIX!!/etc/zebra/ospf6d.conf ] && killall ospf6d
 		[ -f !!PREFIX!!/etc/zebra/bgpd.conf ] && killall bgpd
 		[ -f !!PREFIX!!/etc/zebra/zebra.conf ] &&  killall zebra
 		;;
Index: zebra/Makefile
diff -u zebra/Makefile.orig zebra/Makefile
--- zebra/Makefile.orig	Tue Mar 26 09:31:46 2002
+++ zebra/Makefile	Mon May  6 01:34:34 2002
@@ -7,7 +7,7 @@
 
 PORTNAME=	zebra
 PORTVERSION=	0.92a
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	net ipv6
 MASTER_SITES=	ftp://ftp.zebra.org/pub/zebra/ \
 		ftp://ftp.ripe.net/mirrors/sites/ftp.zebra.org/pub/zebra/ \
How-To-Repeat: 	Even if you provide /usr/local/etc/zebra/ospf6d.conf,
	ospf6d wouldn't start.
Comment 1 Dmitry Sivachenko freebsd_committer freebsd_triage 2002-05-12 23:32:49 UTC
Responsible Changed
From-To: freebsd-ports->joe

Over to MAINTAINER (please change MAINTAINER line to your @FreeBSD.org 
address).
Comment 2 Munechika Sumikawa freebsd_committer freebsd_triage 2002-08-04 21:05:11 UTC
State Changed
From-To: open->closed

commited, thanks!