summaryrefslogtreecommitdiff
path: root/debian/shotwell.postrm
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-01-22 19:36:10 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-01-22 19:36:10 +0100
commite4e0c9e36afec29cf3f5e4f24c2b085a12c7837f (patch)
treef12cd2999f50a6e7f595fce1bd82bc313591546f /debian/shotwell.postrm
parent1dd5b8c88e6db11c731a92031a80beaacee47e46 (diff)
Add scripts to replace shotwell-video-thumbnailer
Diffstat (limited to 'debian/shotwell.postrm')
-rw-r--r--debian/shotwell.postrm15
1 files changed, 15 insertions, 0 deletions
diff --git a/debian/shotwell.postrm b/debian/shotwell.postrm
new file mode 100644
index 0000000..2dbce77
--- /dev/null
+++ b/debian/shotwell.postrm
@@ -0,0 +1,15 @@
+#!/bin/sh
+
+set -e
+
+if [ "$1" = purge ]; then
+
+ #
+ # remove backup files
+ #
+ if [ -e /usr/lib/shotwell-video-thumbnailer.org ] ; then
+ rm -f /usr/lib/shotwell-video-thumbnailer.org
+ fi
+fi
+
+#DEBHELPER#