r8553 - in trunk/BOOK/bootscripts/contrib/lsb-v3: . init.d

dj at linuxfromscratch.org dj at linuxfromscratch.org
Sat Aug 30 00:48:00 MDT 2008


Author: dj
Date: 2008-08-30 00:48:00 -0600 (Sat, 30 Aug 2008)
New Revision: 8553

Modified:
   trunk/BOOK/bootscripts/contrib/lsb-v3/ChangeLog
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/checkfs
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/halt
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/localnet
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/mountfs
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/network
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/reboot
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/sendsignals
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/setclock
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/swap
   trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/sysklogd
Log:
Corrected remaining dependency errors in LSB headers

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/ChangeLog
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/ChangeLog	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/ChangeLog	2008-08-30 06:48:00 UTC (rev 8553)
@@ -1,5 +1,7 @@
 ChangeLog
 
+20080830 - [dj] * Corrected remaining dependency errors in scrpt headers.
+
 20080531 - [dj] * Synced with LFS-Bootscrpts-20080531 (use udevadm)
                 * Added additional functions to manage_functions script.
 

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/checkfs
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/checkfs	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/checkfs	2008-08-30 06:48:00 UTC (rev 8553)
@@ -4,7 +4,7 @@
 ### BEGIN INIT INFO
 # Provides:            checkfs
 # Required-Start:      udev swap $time
-# Should-Start:        lvm
+# Should-Start:
 # Required-Stop:
 # Should-Stop:
 # Default-Start:       sysinit

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/halt
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/halt	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/halt	2008-08-30 06:48:00 UTC (rev 8553)
@@ -5,7 +5,7 @@
 # Provides:            halt
 # Required-Start:
 # Should-Start:
-# Required-Stop:       localnet
+# Required-Stop:
 # Should-Stop:
 # Default-Start:       0
 # Default-Stop:

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/localnet
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/localnet	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/localnet	2008-08-30 06:48:00 UTC (rev 8553)
@@ -5,8 +5,8 @@
 # Provides:            localnet
 # Required-Start:      $local_fs
 # Should-Start:
-# Required-Stop:       $network
-# Should-Stop:         swap
+# Required-Stop:
+# Should-Stop:         halt reboot
 # Default-Start:       sysinit 0 6
 # Default-Stop:
 # Short-Description:   Starts the local network.

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/mountfs
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/mountfs	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/mountfs	2008-08-30 06:48:00 UTC (rev 8553)
@@ -4,7 +4,7 @@
 ### BEGIN INIT INFO
 # Provides:            $local_fs
 # Required-Start:      udev checkfs
-# Should-Start:        lvm
+# Should-Start:
 # Required-Stop:       sendsignals
 # Should-Stop:
 # Default-Start:       sysinit 0 6

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/network
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/network	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/network	2008-08-30 06:48:00 UTC (rev 8553)
@@ -4,9 +4,9 @@
 ### BEGIN INIT INFO
 # Provides:            $network
 # Required-Start:      $syslog
-# Should-Start:        
-# Required-Stop:
-# Should-Stop:         $remote_fs
+# Should-Start:
+# Required-Stop:       $syslog $local_fs swap localnet 
+# Should-Stop:         halt reboot
 # Default-Start:       3 4 5
 # Default-Stop:        0 1 2 6
 # Short-Description:   Starts and configures network interfaces.

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/reboot
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/reboot	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/reboot	2008-08-30 06:48:00 UTC (rev 8553)
@@ -5,7 +5,7 @@
 # Provides:            reboot
 # Required-Start:
 # Should-Start:
-# Required-Stop:       localnet
+# Required-Stop:
 # Should-Stop:
 # Default-Start:       6
 # Default-Stop:

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/sendsignals
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/sendsignals	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/sendsignals	2008-08-30 06:48:00 UTC (rev 8553)
@@ -5,8 +5,8 @@
 # Provides:            sendsignals
 # Required-Start:
 # Should-Start:
-# Required-Stop:       $syslog
-# Should-Stop:
+# Required-Stop:       $local_fs swap localnet
+# Should-Stop:         halt reboot
 # Default-Start:       0 6
 # Default-Stop:
 # Short-Description:   Attempts to kill remaining processes.

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/setclock
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/setclock	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/setclock	2008-08-30 06:48:00 UTC (rev 8553)
@@ -3,18 +3,18 @@
 
 ### BEGIN INIT INFO
 # Provides:            $time
-# Required-Start:      udev
+# Required-Start:      udev swap
 # Should-Start:
-# Required-Stop:
-# Should-Stop:
+# Required-Stop:       $network $syslog $local_fs
+# Should-Stop:         halt reboot
 # Default-Start:       sysinit
 # Default-Stop:        
 # Short-Description:   Stores and restores time from the hardware clock
 # Description:         On boot, system time is obtained from hwclock.  The
 #                      hardware clock can also be set on shutdown.
 # X-LFS-Default-Start: S25
-# X-LFS-Default-Stop:
-# X-LFS-Provided-By:   LFS
+# X-LFS-Default-Stop:  K46
+# X-LFS-Provided-By:   LFS BLFS
 ### END INIT INFO
 
 . /lib/lsb/init-functions

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/swap
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/swap	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/swap	2008-08-30 06:48:00 UTC (rev 8553)
@@ -3,10 +3,10 @@
 
 ### BEGIN INIT INFO
 # Provides:            swap
-# Required-Start:      mountkernfs udev
-# Should-Start:        lvm
-# Required-Stop:       $local_fs
-# Should-Stop:
+# Required-Start:      udev
+# Should-Start:
+# Required-Stop:       localnet
+# Should-Stop:         halt reboot
 # Default-Start:       sysinit 0 6
 # Default-Stop:
 # Short-Description:   Mounts and unmounts swap partitions.

Modified: trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/sysklogd
===================================================================
--- trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/sysklogd	2008-07-16 19:12:53 UTC (rev 8552)
+++ trunk/BOOK/bootscripts/contrib/lsb-v3/init.d/sysklogd	2008-08-30 06:48:00 UTC (rev 8553)
@@ -5,8 +5,8 @@
 # Provides:            $syslog
 # Required-Start:      localnet
 # Should-Start:
-# Required-Stop:       $network
-# Should-Stop:
+# Required-Stop:       sendsignals $local_fs swap
+# Should-Stop:         halt reboot
 # Default-Start:       2 3 4 5
 # Default-Stop:        0 1 6
 # Short-Description:   Starts kernel and system log daemons.




More information about the lfs-book mailing list