From 9c803146a6914881de9c48f710a9243e103e456f Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 30 May 2012 19:00:33 +0000 Subject: [PATCH] add el-primitivo postinst script --- debian/postinst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 debian/postinst diff --git a/debian/postinst b/debian/postinst new file mode 100755 index 0000000..5b59e97 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,25 @@ +#!/bin/sh +# postinst script for cleanup-tools + +set -e + +case "$1" in + configure) + mkdir -p /var/backups/cdr 2> /dev/null || true + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0