~ubuntu-branches/debian/stretch/oss-compat/stretch

« back to all changes in this revision

Viewing changes to debian/prerm

  • Committer: Package Import Robot
  • Author(s): Stephen Kitt
  • Date: 2012-01-15 14:06:16 UTC
  • Revision ID: package-import@ubuntu.com-20120115140616-uufdgldro0z9205r
Tags: 1
* Switch to single-component versions.
* Declare the package is "Multi-Arch: foreign", thanks to Steve Langasek
  for the hint! (Closes: #651335.)
* Make /etc/modprobe.d/oss-compat.conf a file, handling the various
  upgrade cases, and only removing it on purge. (Closes: #649507.)
  (LP: #340873)
* Add kmod as an alternative dependency to avoid preventing
  module-init-tools' removal.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
set -e
3
 
 
4
 
case "$1" in
5
 
  remove)
6
 
    rm -f /etc/modprobe.d/oss-compat.conf
7
 
  ;;
8
 
esac
9
 
 
10
 
# dh_installdeb will replace this with shell code automatically
11
 
# generated by other debhelper scripts.
12
 
 
13
 
#DEBHELPER#
14
 
 
15
 
exit 0