The branch, master has been updated via 868d3ef21a4cc3338a98a1f85ffd30128693d63d (commit) from ae440a14709c8baee6c4d6c8fd4100ffa7980ff0 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 868d3ef21a4cc3338a98a1f85ffd30128693d63d Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Jul 7 00:23:39 2011 +0200 forgot to add postinst script ----------------------------------------------------------------------- Summary of changes: debian/cups-x2go.postinst | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) create mode 100755 debian/cups-x2go.postinst The diff of changes is: diff --git a/debian/cups-x2go.postinst b/debian/cups-x2go.postinst new file mode 100755 index 0000000..2608a7e --- /dev/null +++ b/debian/cups-x2go.postinst @@ -0,0 +1,43 @@ +#!/bin/sh +# postinst script for cups-x2go +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * <postinst> `configure' <most-recently-configured-version> +# * <old-postinst> `abort-upgrade' <new version> +# * <conflictor's-postinst> `abort-remove' `in-favour' <package> +# <new-version> +# * <postinst> `abort-remove' +# * <deconfigured's-postinst> `abort-deconfigure' `in-favour' +# <failed-install-package> <version> `removing' +# <conflicting-package> <version> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + + dpkg-statoverride --add --update root root 0700 /usr/lib/cups/backend/cups-x2go || 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 + + hooks/post-receive -- cups-x2go.git (CUPS Backend for X2go Printing) This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "cups-x2go.git" (CUPS Backend for X2go Printing).