File: postrm

package info (click to toggle)
iwatch 0.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 148 kB
  • sloc: perl: 472; sh: 100; makefile: 41; xml: 28
file content (10 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
# postrm script for iwatch

set -e

if [ "$1" = "purge" ] ; then
   update-rc.d iwatch remove >/dev/null || exit $?
fi

#DEBHELPER#