From: chas w. <ch...@us...> - 2007-12-28 15:11:55
|
Update of /cvsroot/linux-atm/linux-atm/src/config/init-redhat In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv28109/src/config/init-redhat Modified Files: Tag: V2_5_0 Makefile.am atm atm-sysconfig Log Message: more init-scripts updates Index: Makefile.am =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/config/init-redhat/Makefile.am,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** Makefile.am 9 Oct 2001 22:33:06 -0000 1.2 --- Makefile.am 28 Dec 2007 15:11:51 -0000 1.2.2.1 *************** *** 1,2 **** ! EXTRA_DIST = atm atm-sysconfig ifcfg-lec0 README --- 1,2 ---- ! EXTRA_DIST = atm atm-sysconfig ifcfg-lec0 README ifcfg-atm0 ifcfg-nas0 Index: atm =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/config/init-redhat/atm,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -d -r1.2.2.1 -r1.2.2.2 *** atm 23 Dec 2007 22:33:19 -0000 1.2.2.1 --- atm 28 Dec 2007 15:11:51 -0000 1.2.2.2 *************** *** 30,35 **** [ -z "$ATMMODULES" ] || /sbin/modprobe "$ATMMODULES" ! daemon /usr/sbin/atmsigd -b -u uni31 -l syslog -D /var/tmp -t 20 -c /etc/atmsigd.conf ! daemon /usr/sbin/ilmid -b -u 3.1 -l syslog ${ILMIQOS:+ -q $ILMIQOS} if [ "$IPATM" = yes ]; then daemon /usr/sbin/atmarpd -b -l syslog -m --- 30,35 ---- [ -z "$ATMMODULES" ] || /sbin/modprobe "$ATMMODULES" ! daemon /usr/sbin/atmsigd -b ${ATMSIGD_OPTIONS:+ $ATMSIGD_OPTIONS} ! daemon /usr/sbin/ilmid -b ${ILMID_OPTIONS:+ $ILMID_OPTIONS} ${ILMIQOS:+ -q $ILMIQOS} if [ "$IPATM" = yes ]; then daemon /usr/sbin/atmarpd -b -l syslog -m *************** *** 76,79 **** --- 76,80 ---- if [ "$LANE" = yes ]; then for i in $laneinterfaces; do + ./ifdown $i [ -f "/var/run/${i}.pid" ] && kill -TERM `cat /var/run/${i}.pid` done *************** *** 81,84 **** --- 82,86 ---- if [ "$BR2684" = yes ]; then for i in $nasinterfaces; do + ./ifdown $i [ -f "/var/run/br2684ctl-${i}.pid" ] && kill -TERM `cat /var/run/br2684ctl-${i}.pid` done Index: atm-sysconfig =================================================================== RCS file: /cvsroot/linux-atm/linux-atm/src/config/init-redhat/atm-sysconfig,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -d -r1.2.2.1 -r1.2.2.2 *** atm-sysconfig 23 Dec 2007 22:33:19 -0000 1.2.2.1 --- atm-sysconfig 28 Dec 2007 15:11:51 -0000 1.2.2.2 *************** *** 4,9 **** ATM=yes # enable ATM support at all IPATM=no # Classical IP over ATM (using ATMARP) ! BR2864=no # RFC1483/2684 ! LANE=yes # LAN Emulation (client) # ILMIQOS="ubr:pcr=100kbps" # optional: QOS to use on the ILMI VC ATMMODULES= --- 4,11 ---- ATM=yes # enable ATM support at all IPATM=no # Classical IP over ATM (using ATMARP) ! BR2684=no # RFC1483/2684 ! LANE=no # LAN Emulation (client) # ILMIQOS="ubr:pcr=100kbps" # optional: QOS to use on the ILMI VC ATMMODULES= + ATMSIGD_OPTIONS="-u uni31 -l syslog -D /var/tmp -t 20 -c /etc/atmsigd.conf" + ILMID_OPTIONS="-u 3.1 -l syslog" |