Update of /cvsroot/linux-decnet/dnprogs/debian
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2478
Modified Files:
changelog dnet-common.README dnet-progs.files
dnet-progs.init.d rules
Log Message:
Incorporate new stuff
Index: changelog
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/debian/changelog,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -r1.37 -r1.38
*** changelog 16 Mar 2006 14:55:22 -0000 1.37
--- changelog 5 Apr 2006 07:21:46 -0000 1.38
***************
*** 1,2 ****
--- 1,16 ----
+ dnprogs (2.35) unstable; urgency=low
+
+ * Make dnroute work on big-endian machines
+ * dnroute can now send router messages on devices with small MTUs
+ * dnroute now sends level2 router messages and creates area
+ routing tables from those it receives
+ * Add script 'dnetinfo' to query the routing daemon
+ * libdnet: Fix getnodebyaddr so it works with high node numbers.
+ * Make ncurses phone work on big-endian machines
+ * Better newline handling in dnlogin. This should fix those niggling
+ "that doesn't look quite right" things. It also works with GNV's bash too!
+ * Add multinet IP tunnelling daemon.
+
+
dnprogs (2.34) unstable; urgency=low
Index: dnet-common.README
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/debian/dnet-common.README,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** dnet-common.README 26 Sep 2003 08:01:43 -0000 1.1
--- dnet-common.README 5 Apr 2006 07:21:46 -0000 1.2
***************
*** 5,6 ****
--- 5,22 ----
http://linux-decnet.sourceforge.net
+
+ Configuration can be done by editting /etc/defaults/decnet, several environment
+ variables can be set:
+
+ DNET_INTERFACES: List if ethernet interfaces to enable for DECnet, This sets
+ the MAC address of these interfaces to the DECnet address in /etc/decnet.conf.
+ The first interface will be set as the default interface for DECnet
+ communications.
+
+ DNET_DAEMONS: List of daemons to start. dnetd a DECnet "super-server" that
+ will start other daemons on deman. But you can put things like fal in here too.
+
+ ROUTING: Enable routing at level <n>
+ PRIORITY: Router priority
+ <daemon>_FLAGS: flags to add when starting <daemon>
+ eg dnroute_FLAGS="-v"
Index: dnet-progs.files
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/debian/dnet-progs.files,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** dnet-progs.files 30 Mar 2006 07:56:11 -0000 1.5
--- dnet-progs.files 5 Apr 2006 07:21:46 -0000 1.6
***************
*** 7,10 ****
--- 7,11 ----
./usr/sbin/dnetd
./usr/sbin/dnroute
+ ./usr/sbin/dnetinfo
./usr/sbin/multinet
./usr/bin/dndir
***************
*** 31,34 ****
--- 32,36 ----
./usr/share/man/man8/vmsmaild.8
./usr/share/man/man8/dnroute.8
+ ./usr/share/man/man8/dnetinfo.8
./usr/share/man/man8/multinet.8
./usr/share/man/man5/vmsmail.conf.5
Index: dnet-progs.init.d
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/debian/dnet-progs.init.d,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** dnet-progs.init.d 6 May 2003 09:57:57 -0000 1.8
--- dnet-progs.init.d 5 Apr 2006 07:21:46 -0000 1.9
***************
*** 30,34 ****
then
echo -n " $i"
! start-stop-daemon --start --quiet --exec /usr/sbin/$i
fi
done
--- 30,35 ----
then
echo -n " $i"
! eval "flags=\$${i}_FLAGS"
! start-stop-daemon --start --quiet --exec /usr/sbin/$i $flags
fi
done
***************
*** 55,60 ****
do
echo -n " $i"
start-stop-daemon --stop --quiet --exec /usr/sbin/$i
! start-stop-daemon --start --quiet --exec /usr/sbin/$i
done
echo "."
--- 56,62 ----
do
echo -n " $i"
+ eval "flags=\$${i}_FLAGS"
start-stop-daemon --stop --quiet --exec /usr/sbin/$i
! start-stop-daemon --start --quiet --exec /usr/sbin/$i $flags
done
echo "."
Index: rules
===================================================================
RCS file: /cvsroot/linux-decnet/dnprogs/debian/rules,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -r1.20 -r1.21
*** rules 30 Oct 2005 15:21:51 -0000 1.20
--- rules 5 Apr 2006 07:21:46 -0000 1.21
***************
*** 27,32 ****
echo "DNET_INTERFACES=\"all\"" >> debian/tmp/etc/default/decnet
echo '# DNET_DAEMONS lists the daemons to start when dnet-progs is installed.' >> debian/tmp/etc/default/decnet
- echo "DNET_DAEMONS=\"dnetd phoned #dnroute\"" >> debian/tmp/etc/default/decnet
echo "#" >> debian/tmp/etc/default/decnet
echo "# The following two lines enable routing, note that if you are" >> debian/tmp/etc/default/decnet
echo "# being a router, then add dnroute to the DNET_DAEMONS too" >> debian/tmp/etc/default/decnet
--- 27,33 ----
echo "DNET_INTERFACES=\"all\"" >> debian/tmp/etc/default/decnet
echo '# DNET_DAEMONS lists the daemons to start when dnet-progs is installed.' >> debian/tmp/etc/default/decnet
echo "#" >> debian/tmp/etc/default/decnet
+ echo "DNET_DAEMONS=\"dnetd phoned\"" >> debian/tmp/etc/default/decnet
+ echo "dnroute_FLAGS=\"-v -2\"" >> debian/tmp/etc/default/decnet
echo "# The following two lines enable routing, note that if you are" >> debian/tmp/etc/default/decnet
echo "# being a router, then add dnroute to the DNET_DAEMONS too" >> debian/tmp/etc/default/decnet
***************
*** 39,43 ****
make install DESTDIR=`pwd`/debian/tmp MAKEDEB=true RELEASE=true
mv debian/tmp/usr/man debian/tmp/usr/share
! rm debian/tmp/usr/sbin/startnet
install -m755 apps/setether.sh debian/tmp/sbin/setether
dh_installdirs -pdnet-common
--- 40,44 ----
make install DESTDIR=`pwd`/debian/tmp MAKEDEB=true RELEASE=true
mv debian/tmp/usr/man debian/tmp/usr/share
! rm -f debian/tmp/usr/sbin/startnet
install -m755 apps/setether.sh debian/tmp/sbin/setether
dh_installdirs -pdnet-common
|