File: postrm

package info (click to toggle)
oss-compat 7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 60 kB
  • sloc: sh: 56; makefile: 8
file content (15 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
set -e

case "$1" in
  purge)
    rm -f /etc/modprobe.d/oss-compat.conf
  ;;
esac

# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.

#DEBHELPER#

exit 0