diff options
-rw-r--r-- | etc/rc | 7 | ||||
-rw-r--r-- | etc/sysconfig | 6 |
2 files changed, 11 insertions, 2 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -# $Id: rc,v 1.81 1996/01/16 08:04:06 graichen Exp $ +# $Id: rc,v 1.82 1996/01/28 08:08:36 gpalmer Exp $ # From: @(#)rc 5.27 (Berkeley) 6/5/91 # System startup script run by init on autoboot @@ -234,6 +234,11 @@ if [ "X${kerberos_server}" = X"YES" ]; then (sleep 20; kadmind -n >/dev/null 2>&1 &) & fi +# IP multicast routing daemon +if [ "X${mrouted}" != X"NO" -a -x /usr/sbin/mrouted ]; then + echo -n ' mrouted'; mrouted ${mrouted} +fi + echo -n ' inetd'; inetd echo '.' diff --git a/etc/sysconfig b/etc/sysconfig index 5642d3b..3b81168 100644 --- a/etc/sysconfig +++ b/etc/sysconfig @@ -4,7 +4,7 @@ # This is sysconfig - a file full of useful variables that you can set # to change the default startup behavior of your system. # -# $Id: sysconfig,v 1.31 1996/01/06 20:49:18 jkh Exp $ +# $Id: sysconfig,v 1.32 1996/01/28 08:08:37 gpalmer Exp $ ######################### Start Of Local Configuration Section ########### @@ -112,6 +112,10 @@ router=routed # These are the flags you'd like to start the routing daemon with routerflags=-q +# mrouted flags, or NO if you don't want to start mrouted. Needs kernel +# options enabled before it will work. +mrouted=NO + # timed flags, or NO if you don't want to start the time daemon timedflags=NO |