From eb2c7b9733b77071aacdfdcaf9d127ad261d5155 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Fri, 18 Aug 2006 21:28:26 +0000 Subject: Add Quagga package back. Attempt to get it working with vtysh (telnet). --- packages/quagga/quagga.sh | 75 ++++++++++++++++++++++++++++++++++++++++++++++ packages/quagga/quagga.xml | 18 +++++++++++ pkg_config.xml | 24 +++++++-------- 3 files changed, 105 insertions(+), 12 deletions(-) create mode 100644 packages/quagga/quagga.sh create mode 100644 packages/quagga/quagga.xml diff --git a/packages/quagga/quagga.sh b/packages/quagga/quagga.sh new file mode 100644 index 00000000..e20dd15b --- /dev/null +++ b/packages/quagga/quagga.sh @@ -0,0 +1,75 @@ +#!/bin/sh +# +# Quagga.sh retrofitted for pfSense +# part of the pfSense quagga project +# +# You may also wish to use the following variables to fine-tune startup: +# quagga_flags="-d" +# quagga_daemons="zebra ripd ripngd ospfd ospf6d bgpd isisd" +# Per daemon tuning may be done with daemon_name_flags +# zebra_flags="-dP 0" +# bgpd_flags="-dnrP 0" and so on +# +# If the quagga daemons require additional shared libraries to start, +# use the following variable to run ldconfig(8) in advance: +# quagga_extralibs_path="/usr/local/lib ..." +# + +. /etc/rc.subr + +mkdir -p /var/run/quagga + +name="quagga" +rcvar=`set_rcvar` + +stop_postcmd=stop_postcmd + +stop_postcmd() +{ + rm -f $pidfile +} + +# set defaults + +load_rc_config $name + +quagga_enable="YES" +quagga_flags="-d" +quagga_daemons="zebra ripd ripngd ospfd ospf6d bgpd isisd" +{quagga_extralibs_path="" + +quagga_cmd=$1 + +case "$1" in + force*) + quagga_cmd=${quagga_cmd#force} + ;; + fast*) + quagga_cmd=${quagga_cmd#fast} + ;; +esac + +case "${quagga_cmd}" in + start) + if [ ! -z ${quagga_extralibs_path} ]; then + /sbin/ldconfig -m ${quagga_extralibs_path} + fi + ;; + stop) + quagga_daemons=$(reverse_list ${quagga_daemons}) + ;; +esac + +for daemon in ${quagga_daemons}; do + command=/usr/local/sbin/${daemon} + required_files=/usr/local/etc/quagga/${daemon}.conf + pidfile=/var/run/quagga/${daemon}.pid + if [ ${quagga_cmd} = "start" -a ! -f ${required_files} ]; then + continue + fi + if [ ${quagga_cmd} = "stop" -a -z $(check_process ${command}) ]; then + continue + fi + eval flags=\$\{${daemon}_flags:-\"${quagga_flags}\"\} + run_rc_command "$1" +done diff --git a/packages/quagga/quagga.xml b/packages/quagga/quagga.xml new file mode 100644 index 00000000..1b5caedc --- /dev/null +++ b/packages/quagga/quagga.xml @@ -0,0 +1,18 @@ + + + + quagga + + quagga.sh + quagga + + + http://www.pfsense.org/packages/quagga/quagga.sh + /usr/local/etc/rc.d + 0777 + + + mwexec("rm /usr/local/etc/rc.d/quagga*"); + mwexec("rm /usr/local/etc/rc.d/watchquagga"); + + diff --git a/pkg_config.xml b/pkg_config.xml index ea868be8..c21bb14f 100644 --- a/pkg_config.xml +++ b/pkg_config.xml @@ -3,6 +3,16 @@ + + quagga + http://www.quagga.net/ + *NO GUI - Uses Telnet* + Network Management + http://www.pfsense.com/packages/All + quagga-0.99.4_2.tbz + PRE-ALPHA + 0.99 + openntpd http://www.openntpd.org/ @@ -21,8 +31,8 @@ http://www.freenas.org/ <p> - FreeNAS is a free NAS (Network-Attached Storage) server, supporting: CIFS (samba), FTP, - NFS, RSYNC protocols, local user authentication, Software RAID (0,1,5) with a Full WEB + FreeNAS is a free NAS (Network-Attached Storage) server, supporting: CIFS (samba), FTP, + NFS, RSYNC protocols, local user authentication, Software RAID (0,1,5) with a Full WEB configuration interface. </p> <p> @@ -504,16 +514,6 @@ ALPHA doorman.xml - - quagga - http://www.quagga.net/ - *NO GUI* - Network Management - http://www.pfsense.com/packages/All - quagga-0.98.5_1.tbz - ALPHA - 9.5 - zebra http://www.zebra.org/ -- cgit v1.2.3