~ubuntu-branches/debian/experimental/sysvinit/experimental

« back to all changes in this revision

Viewing changes to debian/sysv-rc/postrm

  • Committer: Bazaar Package Importer
  • Author(s): Petter Reinholdtsen, Petter Reinholdtsen, Kel Modderman
  • Date: 2009-07-27 21:12:27 UTC
  • Revision ID: james.westby@ubuntu.com-20090727211227-lxxqgakhpy83x5on
Tags: 2.87dsf-2
[ Petter Reinholdtsen ]
* Start generating MD5 sum files using dh_md5sum, build-depend
  on debhelper for this.  Use compat level 1 to get it to process
  debian/tmp/.
* Drop the stop calls for K11mountoverflowtmp in runlevels 0 and 6.
  The umountfs script will take care of that task (Closes: 526733).
* Remove setting of unused makefile variable LIBC6 from rules.
* Move copyright, preinst, postinst and postrm files for initscripts
  and sysv-rc to debian/ to make the build system closer to other
  source packages.
* Add the sysv-rc saveconfig script to /usr/share/doc/sysv-rc/
  to provide an example.
* Let sysv-rc depend on insserv (>= 1.12.0-10) to activate
  dependency based boot sequencing by default.

[ Kel Modderman ]
* Allow forcefsck on kernel cmdline to have same effect as touching
  /forcefsck in checkfs.sh and checkroot.sh. (Closes: #529498)
* Also allow fastboot on kernel cmdline to have same effect as touching
  /fastboot in checkfs.sh and checkroot.sh.
* Do not use brace expansion in debian/rules and remove need for
  setting SHELL to /bin/bash.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh
2
 
#
3
 
# sysv-rc postrm
4
 
#
5
 
 
6
 
set -e
7
 
 
8
 
case "$1" in
9
 
        remove) : ;;
10
 
        *) exit 0 ;;
11
 
esac
12
 
 
13
 
umask 022
14
 
 
15
 
ln -sf /usr/share/sysvinit/update-rc.d /usr/sbin/update-rc.d
16
 
ln -sf /usr/share/sysvinit/update-rc.d /usr/sbin/invoke-rc.d
17
 
 
18
 
exit 0