Deleted Added
full compact
routing (53611) routing (53613)
1#!/bin/sh -
2#
1#!/bin/sh -
2#
3# $FreeBSD: head/etc/rc.d/routing 53611 1999-11-23 00:22:25Z brian $
3# $FreeBSD: head/etc/rc.d/routing 53613 1999-11-23 00:26:03Z brian $
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all of the user-configurable behavior is no longer in
7# this file, but rather in /etc/defaults/rc.conf. Please check that file
8# first before contemplating any changes here. If you do need to change
9# this file for some reason, we would like to know about it.
10
11# First pass startup stuff.

--- 563 unchanged lines hidden (view full) ---

575 ;;
576 esac
577 unset stash_flag
578 ;;
579 esac
580
581 case ${pppoed_enable} in
582 [Yy][Ee][Ss])
4# From: @(#)netstart 5.9 (Berkeley) 3/30/91
5
6# Note that almost all of the user-configurable behavior is no longer in
7# this file, but rather in /etc/defaults/rc.conf. Please check that file
8# first before contemplating any changes here. If you do need to change
9# this file for some reason, we would like to know about it.
10
11# First pass startup stuff.

--- 563 unchanged lines hidden (view full) ---

575 ;;
576 esac
577 unset stash_flag
578 ;;
579 esac
580
581 case ${pppoed_enable} in
582 [Yy][Ee][Ss])
583 if [ -n "$pppoed_provider ]; then
583 if [ -n "${pppoed_provider}" ]; then
584 pppoed_flags="${pppoed_flags} -p ${pppoed_provider}"
585 fi
586 echo -n ' pppoed';
587 /usr/libexec/pppoed ${pppoed_flags} ${pppoed_interface}
588 ;;
589 esac
590
591 echo '.'

--- 18 unchanged lines hidden ---
584 pppoed_flags="${pppoed_flags} -p ${pppoed_provider}"
585 fi
586 echo -n ' pppoed';
587 /usr/libexec/pppoed ${pppoed_flags} ${pppoed_interface}
588 ;;
589 esac
590
591 echo '.'

--- 18 unchanged lines hidden ---