File: usb-modeswitch.prerm

package info (click to toggle)
usb-modeswitch 2.6.1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 380 kB
  • sloc: ansic: 1,839; tcl: 792; sh: 224; makefile: 136
file content (13 lines) | stat: -rw-r--r-- 219 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "$1" = remove ];
then
	# Also remove the runtime files.
	rm -f /var/lib/usb_modeswitch/last_seen
	rm -f /var/lib/usb_modeswitch/bind_list
	rm -f /var/lib/usb_modeswitch/link_list
fi

#DEBHELPER#