# HG changeset patch # User Paul Boddie # Date 1393026348 -3600 # Node ID afed8ad4df6e4d1316f43f89a3be9b445d0da1c9 # Parent 243efbf40025791f78a63be68b3dab247b63522a Packaging for kolab-utils 3.0.5-2.1 by Paul. diff -r 243efbf40025 -r afed8ad4df6e debian/changelog --- a/debian/changelog Sat Feb 22 00:44:56 2014 +0100 +++ b/debian/changelog Sat Feb 22 00:45:48 2014 +0100 @@ -1,3 +1,10 @@ +kolab-utils (3.0.5-2.1) unstable; urgency=low + + * Non-maintainer upload. + * Added kolab-freebusy storage directory initialisation. + + -- Paul Boddie Fri, 13 Dec 2013 15:24:39 +0100 + kolab-utils (3.0.5-2) unstable; urgency=low * Set QT_NO_GLIB=1 in cron. diff -r 243efbf40025 -r afed8ad4df6e debian/control --- a/debian/control Sat Feb 22 00:44:56 2014 +0100 +++ b/debian/control Sat Feb 22 00:45:48 2014 +0100 @@ -19,7 +19,8 @@ Package: kolab-utils Architecture: any -Depends: ${misc:Depends}, +Depends: kolab-imap, + ${misc:Depends}, ${shlibs:Depends} Description: Kolab Utils Various utilities for Kolab, for migrating from Kolab 2 to 3, diff -r 243efbf40025 -r afed8ad4df6e debian/dirs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/dirs Sat Feb 22 00:45:48 2014 +0100 @@ -0,0 +1,1 @@ +var/lib/kolab-freebusy diff -r 243efbf40025 -r afed8ad4df6e debian/postinst --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debian/postinst Sat Feb 22 00:45:48 2014 +0100 @@ -0,0 +1,22 @@ +#!/bin/sh + +set -e + +#EXTRA# +#DEBHELPER# + +fixperms() { + chown -R www-data:adm \ + /var/lib/kolab-freebusy + chmod 750 \ + /var/lib/kolab-freebusy +} + + +case "$1" in + configure) + fixperms + ;; +esac + +exit 0