add el-primitivo postinst script

0.4
Richard Fuchs 14 years ago
parent 7858dd0153
commit 9c803146a6

25
debian/postinst vendored

@ -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
Loading…
Cancel
Save