File: libphone-utils0.postrm

package info (click to toggle)
libphone-utils 0.1%2Bgit20100630-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,056 kB
  • ctags: 116
  • sloc: sh: 9,184; ansic: 1,035; python: 50; makefile: 49
file content (14 lines) | stat: -rw-r--r-- 179 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# postrm script for libphone-utils

set -e

if [ "$1" = "purge" ] ; then
	if [ -f /etc/phone-utils.conf ] ; then
		rm /etc/phone-utils.conf
	fi
fi

#DEBHELPER#

exit 0;