File: prerm

package info (click to toggle)
usbmount 0.0.14.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 84 kB
  • ctags: 2
  • sloc: sh: 228; makefile: 1
file content (11 lines) | stat: -rw-r--r-- 170 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

# Remove contents of /var/run/usbmount before the package is removed.
if test "$1" = remove; then
    rm -f /var/run/usbmount/*
fi

#DEBHELPER#

exit 0