home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / etc / event.d / rcS < prev    next >
Encoding:
Text File  |  2007-03-11  |  392 b   |  21 lines

  1. # rcS - runlevel compatibility
  2. #
  3. # This task runs the old sysv-rc startup scripts.
  4.  
  5. start on startup
  6.  
  7. stop on runlevel
  8.  
  9. # Note: there can be no previous runlevel here, if we have one it's bad
  10. # information (we enter rc1 not rcS for maintenance).
  11. console output
  12. script
  13.     runlevel --set S >/dev/null || true
  14.  
  15.     PREVLEVEL=N
  16.     RUNLEVEL=S
  17.     export PREVLEVEL RUNLEVEL
  18.  
  19.     exec /etc/init.d/rcS
  20. end script
  21.