Bug 12745 - diffs to delay start of amd rwhod timed on laptops to avoid fail
Summary: diffs to delay start of amd rwhod timed on laptops to avoid fail
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: conf (show other bugs)
Version: 3.2-RELEASE
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 1999-07-21 23:50 UTC by jhs
Modified: 2001-11-17 18:11 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description jhs freebsd_committer freebsd_triage 1999-07-21 23:50:01 UTC
	amd rwhod timed start before ether is configured, & fail,
	up till now everyone has to hand patch this in EG rc.local

Fix: I append patches (Also copied to freebsd-mobile@)
against 3.2-RELEASE (non PAO), as running on my desktops & laptop,
for /etc/{defaults/rc.conf pccard_ether rc.network}, (also for curren).
A few more daemons may need to later be moved within "if [" as
I don't use, so havent tested EG mrouted rpc.ypxfrd.

PS
To keep the diffs minimal & readable, I avoided indenting for my new if's, 
The start sequence for different daemons remains clearly visible, as I
I avoided splitting the 3 procedures in rc.network into sub procedures, for
desktop & laptop.

-------------


Julian
Julian H. Stacey				http://www.freebsd.org/~jhs/--0QWPcNA8zFdCp4K4ZyqVG9Oqcx1C6u8nqbcZSI6Cy5zNFzlB
Content-Type: text/plain; name="file.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="file.diff"

*** 3.2-RELEASE/etc/defaults/rc.conf	Mon Feb 15 11:45:33 1999
--- new-jhs/etc/defaults/rc.conf	Wed Jul 21 18:01:07 1999
***************
*** 20,25 ****
--- 20,36 ----
  pccard_enable="NO"	# Set to YES if you want to configure PCCARD devices.
  pccard_mem="DEFAULT"	# If pccard_enable=YES, this is card memory address.
  pccard_ifconfig="NO"	# Specialized pccard ethernet configuration (or NO).
+ 			# In addition to 3.2-RELEASE function in 
+ 			#	/etc/pccard_ether
+ 			# the following extra notes now apply:
+ 			# Typically one of:
+ 			#	"DHCP"
+ 			#	"host.domain -link0 link1 -link2"
+ 			# If not "NO", assume a pcmcia ethernet,
+ 			# with slow recognition of card by pccardd, 
+ 			# where some rc.network processes (EG timed amd rwhod
+ 			# (perhaps UDP based ?)) would otherwise die,
+ 			# so they are now called via /etc/pccard.conf "insert"
  local_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d"	# startup script dirs.
  local_periodic="/usr/local/etc/periodic /usr/X11R6/etc/periodic" # periodic script dirs
  rc_conf_files="/etc/rc.conf /etc/rc.conf.local"
*** 3.2-RELEASE/etc/pccard_ether	Sat Jun 19 23:18:13 1999
--- new-jhs/etc/pccard_ether	Wed Jul 21 19:24:51 1999
***************
*** 53,55 ****
--- 53,63 ----
  		route add ${route_args}
  	done
  fi
+ 
+ if [ "x$pccard_ifconfig" != "xNO" ] ; then	#{
+ 	if [ -f /etc/rc.network ]; then
+ 		. /etc/rc.network
+ 	fi
+         network_pass2 pccard_supplementary	# xntpd, timed
+         network_pass3 pccard_supplementary	# amd, rwhod
+ fi						#}
*** 3.2-RELEASE/etc/rc.network	Mon Feb 15 11:45:33 1999
--- new-jhs/etc/rc.network	Wed Jul 21 19:29:47 1999
***************
*** 194,199 ****
--- 194,201 ----
  
  network_pass2() {
      echo -n 'Doing additional network setup:'
+ if [ "X$1" != "X"pccard_supplementary ]; then	#{
+     # Non laptop, or laptop not on supplementary pass.
      if [ "X${named_enable}" = X"YES" ]; then
  	    echo -n ' named';		${named_program-"named"} ${named_flags}
      fi
***************
*** 201,206 ****
--- 203,213 ----
      if [ "X${ntpdate_enable}" = X"YES" ]; then
  	    echo -n ' ntpdate';	${ntpdate_program} ${ntpdate_flags} >/dev/null 2>&1
      fi
+ fi						#}
+ 
+ if [ \( "X${pccard_ifconfig}" = X"NO" \) -o \
+ 	\( "X$1" = "X"pccard_supplementary \) ]; then	#{
+     # Non laptop, or laptop on supplementary pccard pass.
  
      if [ "X${xntpd_enable}" = X"YES" ]; then
  	    echo -n ' xntpd';	${xntpd_program} ${xntpd_flags}
***************
*** 209,215 ****
--- 216,225 ----
      if [ "X${timed_enable}" = X"YES" ]; then
  	    echo -n ' timed';		timed ${timed_flags}
      fi
+ fi 							#}
  
+ if [ "X$1" != "X"pccard_supplementary ]; then	#{
+     # Non laptop, or laptop not yet on supplementary pass.
      if [ "X${portmap_enable}" = X"YES" ]; then
  	    echo -n ' portmap';		portmap ${portmap_flags}
      fi
***************
*** 249,262 ****
--- 259,276 ----
      if [ -n "${atm_pass2_done}" ]; then
  	    atm_pass3
      fi
+ fi						#}
  
      echo '.'
      network_pass2_done=YES
  }
  
+ 
  network_pass3() {
      echo -n 'Starting final network daemons:'
  
+ if [ "X$1" != "X"pccard_supplementary ]; then	#{
+     # Non laptop, or laptop not yet on supplementary pass.
      if [ "X${nfs_server_enable}" = X"YES" -a -r /etc/exports ]; then
  	    echo -n ' mountd'
  	    if [ "X${weak_mountd_authentication}" = X"YES" ]; then
***************
*** 282,288 ****
--- 296,306 ----
  			>/dev/null 2>&1
  	    fi
      fi
+ fi						#}
  
+ if [ \( "X${pccard_ifconfig}" = X"NO" \) -o \
+ 	\( "X$1" = "X"pccard_supplementary \) ]; then	#{
+     # Non laptop, or laptop on supplementary pccard pass.
      if [ "X${amd_enable}" = X"YES" ]; then
  	    echo -n ' amd'
  	    if [ "X${amd_map_program}" != X"NO" ]; then
***************
*** 294,300 ****
--- 312,321 ----
      if [ "X${rwhod_enable}" = X"YES" ]; then
  	    echo -n ' rwhod';	rwhod ${rwhod_flags}
      fi
+ fi							#}
  
+ if [ "X$1" != "X"pccard_supplementary ]; then		#{
+     # Non laptop, or laptop not yet on supplementary pass.
      # Kerberos runs ONLY on the Kerberos server machine
      if [ "X${kerberos_server_enable}" = X"YES" ]; then
  	    if [ "X${kerberos_stash}" = "XYES" ]; then
***************
*** 323,328 ****
--- 344,350 ----
                 echo -n ' natd'; natd ${natd_flags} ${natd_ifarg}
         fi
  
+ fi							#}
      echo '.'
      network_pass3_done=YES
  }
-------------
Extra patches to run against current 
	(version as of ctm: "Jul 21 18:25 src-cur.3942.gz")
after running the release patches, as 2 Rel. patches break on current.
*** src-cur.3942/etc/rc.conf	Wed Jul 21 22:48:56 1999
--- new-jhs/etc/rc.conf	Wed Jul 21 23:21:34 1999
***************
*** 22,27 ****
--- 22,38 ----
  pccard_enable="NO"	# Set to YES if you want to configure PCCARD devices.
  pccard_mem="DEFAULT"	# If pccard_enable=YES, this is card memory address.
  pccard_ifconfig="NO"	# Specialized pccard ethernet configuration (or NO).
+ 			# In addition to 3.2-RELEASE function in 
+ 			#	/etc/pccard_ether
+ 			# the following extra notes now apply:
+ 			# Typically one of:
+ 			#	"DHCP"
+ 			#	"host.domain -link0 link1 -link2"
+ 			# If not "NO", assume a pcmcia ethernet,
+ 			# with slow recognition of card by pccardd, 
+ 			# where some rc.network processes (EG timed amd rwhod
+ 			# (perhaps UDP based ?)) would otherwise die,
+ 			# so they are now called via /etc/pccard.conf "insert"
  pccardd_flags=""	# Additional flags for pccardd.
  pccard_conf="/etc/pccard.conf.sample"	# pccardd(8) config file
  local_startup="/usr/local/etc/rc.d /usr/X11R6/etc/rc.d"	# startup script dirs.
*** src-cur.3942/etc/rc.network	Wed Jul 21 22:48:59 1999
--- new-jhs//etc/rc.network	Wed Jul 21 23:25:44 1999
***************
*** 358,363 ****
--- 379,385 ----
  	    fi
  	    unset stash_flag
      fi
+ fi							#}
      
      echo '.'
      network_pass3_done=YES
--------
How-To-Repeat: 
	Greg Lehey <grog@lemis.com> (laptop owner) has also seen this problem
Comment 1 Mike Barcroft freebsd_committer freebsd_triage 2001-07-21 00:32:57 UTC
State Changed
From-To: open->feedback


Does this problem still occur in newer versions of FreeBSD, 
such as 4.3-RELEASE?
Comment 2 Bruce A. Mah freebsd_committer freebsd_triage 2001-11-17 18:10:35 UTC
State Changed
From-To: feedback->closed

Feedback timeout (3+ months).  The startup scripts have changed 
considerably since this time; also, pccardd -z helps with  
problems such as this.