File: postrm

package info (click to toggle)
fookebox 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 852 kB
  • sloc: python: 1,559; sh: 42; makefile: 14
file content (13 lines) | stat: -rw-r--r-- 187 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
# postrm script for fookebox

set -e

# Remove database if package is being purged
if [ "$1" = "purge" ] ; then
	rm -f /var/lib/fookebox/fookebox.sqlite
fi

#DEBHELPER#

exit 0