diff options
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 7 | ||||
| -rw-r--r-- | debian/itzks-systems-diskless.install | 3 | ||||
| -rwxr-xr-x | debian/itzks-systems-diskless.postinst | 39 | ||||
| -rwxr-xr-x | debian/itzks-systems-diskless.postrm | 36 | 
4 files changed, 84 insertions, 1 deletions
| diff --git a/debian/changelog b/debian/changelog index a94f80f..03c8753 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +itzks-systems (2014.02.24.2) UNRELEASED; urgency=low + +  * GNOME: +    - Set default idle time for GNOME sessions/screensaver to 15 minutes. + + -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de>  Wed, 26 Feb 2014 11:49:09 +0100 +  itzks-systems (2014.02.24.1) squeeze-backports; urgency=low    * Typo fix in mimeapps.list. diff --git a/debian/itzks-systems-diskless.install b/debian/itzks-systems-diskless.install index 4e96b91..72595ab 100644 --- a/debian/itzks-systems-diskless.install +++ b/debian/itzks-systems-diskless.install @@ -1 +1,2 @@ -etc/mimeapps.list etc/
\ No newline at end of file +etc/mimeapps.list etc/ +share/gconf/defaults/51_itzks-systems-diskless usr/share/gconf/defaults/ diff --git a/debian/itzks-systems-diskless.postinst b/debian/itzks-systems-diskless.postinst new file mode 100755 index 0000000..2fddf61 --- /dev/null +++ b/debian/itzks-systems-diskless.postinst @@ -0,0 +1,39 @@ +#!/bin/sh +# postinst script for itzks-systems-diskless +# +# 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) +		update-gconf-defaults +		;; + +	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 diff --git a/debian/itzks-systems-diskless.postrm b/debian/itzks-systems-diskless.postrm new file mode 100755 index 0000000..2e1a124 --- /dev/null +++ b/debian/itzks-systems-diskless.postrm @@ -0,0 +1,36 @@ +#! /bin/sh +# postrm script for itzks-systems-diskless +# +# see: dh_installdeb(1) +# summary of how this script can be called: +#        * <postrm> `remove' +#        * <postrm> `purge' +#        * <old-postrm> `upgrade' <new-version> +#        * <new-postrm> `failed-upgrade' <old-version> +#        * <new-postrm> `abort-install' +#        * <new-postrm> `abort-install' <old-version> +#        * <new-postrm> `abort-upgrade' <old-version> +#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version> +# for details, see /usr/share/doc/packaging-manual/ + +set -e + + +case "$1" in +	purge|remove) +		update-gconf-defaults +		;; +	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) +		;; +	*) +		echo "postrm called with unknown argument \`$1'" >&2 +		exit 0 +		;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 | 
