File: apt-file.postrm

package info (click to toggle)
apt-file 2.5.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 608 kB
  • sloc: perl: 1,246; python: 132; makefile: 99; sh: 87
file content (10 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#! /bin/sh
# postremoval script for apt-file
set -e;

if [ "purge" = "$1" ]; then
	rm -fr /var/cache/apt/apt-file/
	rm -f /var/lib/update-notifier/user.d/apt-file-update
fi;

#DEBHELPER#