home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / sysvinit / update-rc.d < prev   
Encoding:
Text File  |  2006-08-23  |  541 b   |  28 lines

  1. #! /bin/sh
  2. #
  3. # update-rc.d
  4. #
  5. # Dummy update-rc.d, installed when file-rc replaces
  6. # sysv-rc or the other way around. The postrm of the
  7. # package being replaced symlinks /usr/sbin/update-rc.d
  8. # to this dummy file.
  9. #
  10. # All this script does is "scream and die".
  11. #
  12.  
  13. name=`basename $0`
  14.  
  15. cat <<EOF >&2
  16.  
  17. $name: not present yet.
  18.  
  19. You are replacing sysv-rc with file-rc or another -rc package, or
  20. the other way around. The replacement package must first be
  21. unpacked before you can configure other packages.
  22.  
  23. Exiting with error status 1.
  24.  
  25. EOF
  26.  
  27. exit 1
  28.