README
lancfg Release 0.0.1 by Roberto Bartola

Package lancfg create a tool for check ip configuration and
switch the better one between two different dafault configuration
avaible.

You have to manually change the /etc/rc.d/rc.M file like in
document above and add " append = lan=JOB " or " append = lan=HOME " in your lilo.conf file 
  

Package created by: Roberto Bartola
EMail address: 

-> Changing the rc.M file:
you have to insert the lines:

		# Lan configuration (HOME or JOB)
		if [ -x /usr/local/sbin/lancfg ]; then
		 . /usr/local/sbin/lancfg $lan
		 else 
Before the lines:

		# Initialize the networking hardware.
		if [ -x /etc/rc.d/rc.inet1 ]; then
		  . /etc/rc.d/rc.inet1
		fi
And then add:
		fi

The lines will becamo so:
		# Lan configuration (HOME or JOB)
		if [ -x /usr/local/sbin/lancfg ]; then
		 . /usr/local/sbin/lancfg $lan
		 else 
		# Initialize the networking hardware.
		if [ -x /etc/rc.d/rc.inet1 ]; then
		  . /etc/rc.d/rc.inet1
		fi
		fi



-> lilo.conf:
	append="init = 2 lan=HOME"
and then run lilo
