File: prerm

package info (click to toggle)
usbmount 0.0.21
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 100 kB
  • ctags: 2
  • sloc: sh: 189; makefile: 2
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