File: update-rc.d

package info (click to toggle)
sysvinit 3.14-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,892 kB
  • sloc: ansic: 8,529; sh: 3,853; makefile: 351
file content (27 lines) | stat: -rwxr-xr-x 541 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#! /bin/sh
#
# update-rc.d
#
# Dummy update-rc.d, installed when file-rc replaces
# sysv-rc or the other way around. The postrm of the
# package being replaced symlinks /usr/sbin/update-rc.d
# to this dummy file.
#
# All this script does is "scream and die".
#

name=`basename $0`

cat <<EOF >&2

$name: not present yet.

You are replacing sysv-rc with file-rc or another -rc package, or
the other way around. The replacement package must first be
unpacked before you can configure other packages.

Exiting with error status 1.

EOF

exit 1