diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-01-22 19:36:10 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-01-22 19:36:10 +0100 |
commit | e4e0c9e36afec29cf3f5e4f24c2b085a12c7837f (patch) | |
tree | f12cd2999f50a6e7f595fce1bd82bc313591546f /debian/shotwell.postrm | |
parent | 1dd5b8c88e6db11c731a92031a80beaacee47e46 (diff) |
Add scripts to replace shotwell-video-thumbnailer
Diffstat (limited to 'debian/shotwell.postrm')
-rw-r--r-- | debian/shotwell.postrm | 15 |
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# |