--- live-config-2.0.15.orig/debian/live-config-sysvinit.live-config.init
+++ live-config-2.0.15/debian/live-config-sysvinit.live-config.init
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+## live-config contains the scripts that configure a Debian Live system during
+## the boot process (late userspace).
+##
+## This is the sysvinit script for live-config.
+
+
+### BEGIN INIT INFO
+# Provides: live-config
+# Required-Start:
+# Required-Stop:
+# Should-Start:
+# Should-Stop:
+# Default-Start: S
+# Default-Stop:
+# Short-Description: Debian Live - System Configuration Scripts
+# Description: live-config contains the scripts that configure a Debian
+# Live system during the boot process (late userspace).
+# X-Start-Before:
+# X-Stop-After:
+# X-Interactive: true
+### END INIT INFO
+
+case "${1}" in
+ start)
+ /lib/live/config.sh
+ ;;
+
+ force-reload|restart|stop)
+
+ ;;
+esac
--- live-config-2.0.15.orig/debian/live-config-upstart.live-config.upstart
+++ live-config-2.0.15/debian/live-config-upstart.live-config.upstart
@@ -0,0 +1,15 @@
+## Debian Live - System Configuration Scripts
+##
+## live-config contains the scripts that configure a Debian Live system during
+## the boot process (late userspace).
+##
+## This is the upstart job for live-config.
+
+
+description "live-config"
+author "Daniel Baumann <daniel@debian.org>"
+
+start on runlevel S
+stop on runlevel [!2345]
+
+exec /lib/live/config.sh
--- live-config-2.0.15.orig/debian/copyright
+++ live-config-2.0.15/debian/copyright
@@ -0,0 +1,18 @@
+Files: *
+Copyright: (C) 2006-2011 Daniel Baumann <daniel@debian.org>
+License: GPL-3+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ can be found in /usr/share/common-licenses/GPL-3 file.
--- live-config-2.0.15.orig/debian/compat
+++ live-config-2.0.15/debian/compat
@@ -0,0 +1 @@
+7
--- live-config-2.0.15.orig/debian/live-initramfs.links
+++ live-config-2.0.15/debian/live-initramfs.links
@@ -0,0 +1,3 @@
+/usr/share/man/man7/live-config.7.gz /usr/share/man/man7/live-initramfs.7.gz
+/usr/share/man/de/man7/live-config.7.gz /usr/share/man/de/man7/live-initramfs.7.gz
+/usr/share/man/fr/man7/live-config.7.gz /usr/share/man/fr/man7/live-initramfs.7.gz
--- live-config-2.0.15.orig/debian/live-config-runit.live-config.init
+++ live-config-2.0.15/debian/live-config-runit.live-config.init
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+## live-config contains the scripts that configure a Debian Live system during
+## the boot process (late userspace).
+##
+## This is the runit-run script for live-config.
+
+
+### BEGIN INIT INFO
+# Provides: live-config
+# Required-Start:
+# Required-Stop:
+# Should-Start:
+# Should-Stop:
+# Default-Start: S
+# Default-Stop:
+# Short-Description: Debian Live - System Configuration Scripts
+# Description: live-config contains the scripts that configure a Debian
+# Live system during the boot process (late userspace).
+# X-Start-Before:
+# X-Stop-After:
+# X-Interactive: true
+### END INIT INFO
+
+case "${1}" in
+ start)
+ /lib/live/config.sh
+ ;;
+
+ force-reload|restart|stop)
+
+ ;;
+esac
--- live-config-2.0.15.orig/debian/control
+++ live-config-2.0.15/debian/control
@@ -0,0 +1,60 @@
+Source: live-config
+Section: misc
+Priority: optional
+Maintainer: Debian Live Project <debian-live@lists.debian.org>
+Uploaders: Daniel Baumann <daniel@debian.org>
+Build-Depends: debhelper (>= 7.0.50~)
+Build-Depends-Indep: lsb-release
+Standards-Version: 3.9.1
+Homepage: http://live.debian.net/devel/live-config/
+Vcs-Browser: http://live.debian.net/gitweb/?p=live-config.git
+Vcs-Git: git://live.debian.net/git/live-config.git
+
+Package: live-config
+Architecture: all
+Depends: ${misc:Depends}, live-config-sysvinit | live-config-backend
+Recommends: user-setup, sudo
+Suggests: wget
+Description: Debian Live - System Configuration Scripts
+ live-config contains the scripts that configure a Debian Live system during
+ the boot process (late userspace).
+ .
+ In addition to live-config, a backend for an init system is required, such as
+ live-config-sysvinit.
+
+Package: live-config-runit
+Architecture: all
+Depends: ${misc:Depends}
+Conflicts: live-config-backend
+Replaces: live-config-backend
+Provides: live-config-backend
+Suggests: runit-run
+Description: Debian Live - System Configuration Scripts (runit backend)
+ live-config contains the scripts that configure a Debian Live system during
+ the boot process (late userspace).
+ .
+ This package contains the runit backend (experimental!).
+
+Package: live-config-sysvinit
+Architecture: all
+Depends: ${misc:Depends}, sysvinit (>= 2.86)
+Conflicts: live-config-backend
+Replaces: live-config-backend
+Provides: live-config-backend
+Description: Debian Live - System Configuration Scripts (sysvinit backend)
+ live-config contains the scripts that configure a Debian Live system during
+ the boot process (late userspace).
+ .
+ This package contains the sysvinit backend.
+
+Package: live-config-upstart
+Architecture: all
+Depends: ${misc:Depends}, upstart
+Conflicts: live-config-backend
+Replaces: live-config-backend
+Provides: live-config-backend
+Description: Debian Live - System Configuration Scripts (upstart backend)
+ live-config contains the scripts that configure a Debian Live system during
+ the boot process (late userspace).
+ .
+ This package contains the upstart backend (experimental!).
--- live-config-2.0.15.orig/debian/rules
+++ live-config-2.0.15/debian/rules
@@ -0,0 +1,27 @@
+#!/usr/bin/make -f
+
+%:
+ dh ${@}
+
+override_dh_auto_build:
+ # disabled
+
+override_dh_auto_install:
+ $(MAKE) DESTDIR=$(CURDIR)/debian/live-config install
+
+ # Removing useless files
+ rm -f debian/live-config/usr/share/doc/live-config/COPYING
+ bin/update-live-config.sh debian/live-config/lib/live/config
+
+ # live-config-sysvinit
+ mkdir -p debian/live-config-sysvinit/lib/live/config
+ mv debian/live-config/lib/live/config/*-sysvinit debian/live-config-sysvinit/lib/live/config
+ mv debian/live-config/lib/live/config/*-sysv-rc debian/live-config-sysvinit/lib/live/config
+
+override_dh_installinit:
+ dh_installinit -p live-config-runit --no-restart-on-upgrade --no-start --update-rcd-params='start 00 S .' --name live-config
+ dh_installinit -p live-config-sysvinit --no-restart-on-upgrade --no-start --update-rcd-params='start 00 S .' --name live-config
+ dh_installinit -p live-config-upstart --no-restart-on-upgrade --no-start --name live-config
+
+override_dh_compress:
+ dh_compress -Xusr/share/doc/live-config/examples
--- live-config-2.0.15.orig/debian/changelog
+++ live-config-2.0.15/debian/changelog
@@ -0,0 +1,414 @@
+live-config (2.0.15-1) unstable; urgency=low
+
+ * Removing systemd support for 2.0 branch (Closes: #608326).
+ * Tightening grep call for live user in /etc/passwd to not fail with
+ false-positives.
+ * Removing headers in copyright file.
+ * Updating year in copyright.
+ * Updating year in manpage, examples and script files.
+ * Correcting hostname typo in manpages.
+ * Adding Italian manpage translation from skizzhg <skizzhg@gmx.com>.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 25 Jan 2011 08:16:12 +0100
+
+live-config (2.0.14-1) unstable; urgency=medium
+
+ [ Nick Niktaris ]
+ * Also depend on xdg-user-dirs in KDE4 specifics of debian-installer-
+ launcher script.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 06 Dec 2010 11:30:53 +0100
+
+live-config (2.0.13-1) unstable; urgency=medium
+
+ [ Steven Shiau ]
+ * Adding missing argument in ssh_keygen calls in openssh-server
+ script.
+
+ [ Daniel Baumann ]
+ * Correct debian-installer-launcher script for KDE4, thanks to Nick
+ Niktaris <niktaris@knoppel.org>.
+ * Removing my previously wrongly dublicated chown call in debian-
+ installer-launcher script.
+ * Correcting install call for kde desktop file in debian-installer-
+ launcher script.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 29 Nov 2010 23:23:12 +0100
+
+live-config (2.0.12-1) unstable; urgency=medium
+
+ * Adding openssh-server config script to regenerate ssh keys on boot.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 22 Nov 2010 23:00:11 +0100
+
+live-config (2.0.11-1) unstable; urgency=medium
+
+ * Removing deep link to bug page in the manual, since we don't have
+ stable references yet.
+ * Correcting email address in previous changelog entry.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 28 Oct 2010 10:05:52 +0200
+
+live-config (2.0.10-1) unstable; urgency=medium
+
+ * Disabling xinit hack when using persistency and another display
+ manager has been configured (Closes: #601235).
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 27 Oct 2010 21:20:45 +0200
+
+live-config (2.0.9-1) unstable; urgency=medium
+
+ * Don't compress example files in /usr/share/doc.
+ * Updating gdm3 check to make autologin work again with gdm3 2.30.5-4.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 21 Oct 2010 11:12:37 +0200
+
+live-config (2.0.8-1) unstable; urgency=medium
+
+ [ Daniel Baumann ]
+ * Adding forgotten config= shortcut in argument parsing.
+ * Using medium as keyword instead of media in hook script, as
+ documented in the manpage (Closes: #598375).
+ * Correctly prepending local hooks with file:// prefix (Closes:
+ #598375).
+
+ [ Scott Barker ]
+ * Fixing typo in config.d files parsing from live media (Closes:
+ #598536).
+
+ [ Daniel Baumann ]
+ * Correcting another typo in hooks config script regarding the loop
+ variable.
+ * Simplyfing and silencing switch between local and remote files in
+ hooks script.
+ * Simplyfing sed call when using local hook scripts.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 02 Oct 2010 10:12:13 +0200
+
+live-config (2.0.7-1) unstable; urgency=medium
+
+ [ Daniel Baumann ]
+ * Correcting typo in persistent file of apport and ureadahead scripts.
+ * Also allowing short names for live-config and live-noconfig
+ parameters.
+ * Correcting accidentally reverted change of live user uid from 999 to
+ 1000.
+
+ [ intrigeri ]
+ * Correcting typo in console-common script.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 26 Sep 2010 09:01:09 +0200
+
+live-config (2.0.6-1) unstable; urgency=low
+
+ * Applying patch from Jonathan Riddell <jriddell@ubuntu.com> to
+ disable some new akonadi services in kde-services script.
+ * Adding xinit config script.
+ * Adding xinit script in manpages.
+ * Renumbering config scripts for xinit.
+ * Renaming xinit.sh to zz-xinit.sh in /etc/profile.d to ensure it is
+ run last.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 15 Sep 2010 12:07:37 +0200
+
+live-config (2.0.5-1) unstable; urgency=low
+
+ * Disabling kaboom in user context.
+ * Using double-hashes as meta-comment sign.
+ * Updating standards version of example package to 3.9.1.
+ * Updating uinstall targets in makefile.
+ * Correcting wrong spelling of debconf frontend in xserver-xorg
+ script.
+ * Updating /etc/hosts handling in hostname config script for squeeze.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 06 Sep 2010 15:04:05 +0200
+
+live-config (2.0.4-1) unstable; urgency=low
+
+ * Using config.d instead of config.conf.d as directory name for custom
+ configuration files.
+ * Updating live-installer-launcher script for debian-installer-
+ launcher rename.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 02 Sep 2010 22:33:04 +0200
+
+live-config (2.0.3-1) unstable; urgency=low
+
+ * Updating live-build reference in live-config manpage.
+ * Renumbering config scripts.
+ * Rewriting TODO file.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 02 Sep 2010 18:35:50 +0200
+
+live-config (2.0.2-1) unstable; urgency=low
+
+ * Downgrading runit-run depends to suggests as asked by release team.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 21 Aug 2010 23:41:45 +0200
+
+live-config (2.0.1-1) unstable; urgency=low
+
+ [ Daniel Baumann ]
+ * Only run x-session-manager parts when x-session-manager is set.
+
+ [ intrigeri ]
+ * Removing spurious copy/pasted line in xserver-xorg script.
+
+ [ Daniel Baumann ]
+ * Using dpkg-reconfigure instead of dexconf in xserver-xorg script
+ (Closes: #592510).
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 14 Aug 2010 20:06:21 +0200
+
+live-config (2.0.0-1) unstable; urgency=low
+
+ * Improving grammar in the last changelog entry.
+ * Correcting spelling typo in manpage, thanks to Tassia Camoes Araujo
+ <tassia@gmail.com>.
+ * Updating TODO file.
+ * Updating French manpage translation, thanks to Thierry Lépicier
+ <thierry.lepicier@free.fr>.
+ * Updating TODO file.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 10 Aug 2010 00:03:20 +0200
+
+live-config (2.0~a17-1) unstable; urgency=low
+
+ * Split out runit backend to own package.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 29 Jul 2010 17:01:05 +0200
+
+live-config (2.0~a16-1) unstable; urgency=high
+
+ * Adding workaround for bug in install calls wrt/ permissions of
+ intermediate directories.
+ * Simplyfing tzdata script.
+ * Adding manpage symlinks in transitional package.
+ * Adding option to set x-session-manager in preparation for multi-
+ desktop images.
+ * Correcting install location for scripts in example package.
+ * Simplyfing scripts definition in makefile.
+ * Adding updated French manpage translation from Thierry Lépicier
+ <thierry.lepicier@free.fr>.
+ * Don't fail in Makefile when there's no checkbashism (Closes:
+ #590407).
+ * Adding alternative depends to runit-run on live-config-sysvinit,
+ thanks to Daniel Kahn Gillmor <dkg@fifthhorseman.net>.
+ * Updating package to standards version 3.9.1.
+ * Adding Brazilian Portuguese manpage translation from Tassia Camoes
+ Araujo <tassia@gmail.com>.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 28 Jul 2010 05:47:03 +0200
+
+live-config (2.0~a15-1) unstable; urgency=low
+
+ * Correcting typo in update-live-config script.
+ * Also including bin directory in test target of makefile.
+ * Updating TODO file.
+ * Adding ureadahead script (ubuntu only).
+ * Removing debian specific scripts when being used on ubuntu.
+ * Updating TODO file.
+ * Improving and updating French manpage translation.
+ * Improving backend dependencies.
+ * Adding example hooks.
+ * Correcting manpage syntax regarding multiple locales.
+ * Adding filesystem and media options to hook script to automatically
+ execute hooks in default locations.
+ * Allowing to combine different hook methods at the same time.
+ * Preconfiguring kxkb to show kde keyboard selector when using
+ multiple layouts.
+ * Ensuring that kde configuration is owned by the live user.
+ * Updating kxkbrc default values.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 17 Jul 2010 00:40:49 +0200
+
+live-config (2.0~a14-1) unstable; urgency=low
+
+ * Prefixing local variables in update-live-config script.
+ * Adding check for lsb_release in update-live-config script.
+ * Updating example package to standards 3.9.0.
+ * Adding README for example debian package.
+ * Adding note about live-config in copyright file of live-config-
+ foobar example package.
+ * Regenerating manpages po files.
+ * Enabling short options (foo instead of live-config.foo).
+ * Updating manpages to reflect that the gdm script was reenabled for
+ squeeze and newer.
+ * Updating manpages to reflect that short options are enabled now.
+ * Using two hashes for license headers.
+ * Prefixing some forgotten internal variables.
+ * Adding live-config.noautologin parameter to disable both console and
+ graphical autologin.
+ * Updating manpages to reflect addition of live-config.noautologin
+ parameter.
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 16 Jul 2010 01:44:26 +0200
+
+live-config (2.0~a13-1) unstable; urgency=low
+
+ * Because lxde still uses gdm instead of gdm3 on squeeze, also
+ including gdm config scripts when building on squeeze and newer.
+ * Improving test targets in Makefile a bit.
+ * Improving clean target in manpages Makefile a bit.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 15 Jul 2010 19:25:37 +0200
+
+live-config (2.0~a12-1) unstable; urgency=low
+
+ * Factoring out common function to start network.
+ * Updating replacement update-initramfs cope with files being in /boot
+ rather than root.
+ * Updating package to standards version 3.9.0.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 07 Jul 2010 20:20:02 +0200
+
+live-config (2.0~a11-1) unstable; urgency=low
+
+ * Correcting spelling mistake in changelog.
+ * Degrading systemd depends to suggests for the time that systemd
+ resides in experimental only.
+ * Adding initial French manpage translation from Thierry Lépicier
+ <thierry.lepicier@free.fr>.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 20 Jun 2010 19:18:11 +0200
+
+live-config (2.0~a10-1) unstable; urgency=low
+
+ * Adding commentary description in systemd service file.
+ * Adding commentary description in sysvinit script file.
+ * Also moving sysv-rc script to sysvinit backend package.
+ * Renaming live-config.keyboard-layout parameter to live-
+ config.keyboard-layouts for consistency.
+ * Correcting typo in sysv-rc script.
+ * Updating TODO file.
+ * Export network status in hook script.
+ * Sorting dh_installinit calls in rules file.
+ * Adding debug boot option.
+ * Automatically determine on which distribution the package is built
+ through lsb_release and removing unnecessary config scripts from the
+ resulting package.
+ * Moving build-depends on lsb-release to build-depends-indep.
+ * Adding depends to systemd now that it passed the NEW queue.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 17 Jun 2010 21:47:33 +0200
+
+live-config (2.0~a9-1) unstable; urgency=low
+
+ * Adding slim config script.
+ * Adding sysv-rc script, thanks to Michal Suchanek
+ <hramrach@centrum.cz> for the idea.
+ * Correcting nodm script.
+ * Adding initial upstart backend.
+
+ -- Daniel Baumann <daniel@debian.org> Fri, 11 Jun 2010 18:36:11 +0200
+
+live-config (2.0~a8-1) unstable; urgency=low
+
+ * Renaming noxautologin parameter to nox11autologin for consistency.
+ * Renaming foobar example configuration file to foobar.conf for
+ consistency.
+ * Removing some confusing code from example script.
+ * Using example script with proper order number.
+ * Adding reference to http://live.debian.net/other/hooks/ in manpage.
+ * Improving live-config.hooks description in manpage.
+ * Updating manpage to reflect that there can be more than one keyboard
+ layout specified at the time.
+ * Adding comment about enabling kxkb in kde-services config script.
+ * Moving sysvinit config script to live-config-sysvinit package.
+ * Adding initial systemd backend.
+ * Documenting 'regressions' in TOOD file.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 10 Jun 2010 12:40:26 +0200
+
+live-config (2.0~a7-1) unstable; urgency=low
+
+ * Updating TODO file.
+ * Adding xserver-xorg script.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 08 Jun 2010 20:22:20 +0200
+
+live-config (2.0~a6-1) unstable; urgency=low
+
+ * Moving customization example in an own directory within the example
+ directory.
+ * Adding sample configuration file to customization examples package.
+ * Adding note about customization in manpage.
+ * Updating TODO file.
+ * Updating update-version script.
+ * Updating TODO file.
+ * Adding keyboard configuration scripts.
+ * Correcting dash escaping in manpage.
+ * Renaming hook script to hooks for consistency.
+ * Renaming noxlogin parameter to noxautologin for consistency.
+ * Adding sysvinit script for terminal autologin.
+ * Adding anacron script.
+ * Adding util-linux script.
+ * Adding login script.
+
+ -- Daniel Baumann <daniel@debian.org> Tue, 08 Jun 2010 06:02:06 +0200
+
+live-config (2.0~a5-1) unstable; urgency=low
+
+ * Adding boot parameter handling in example script.
+ * Adding copyright notices in end-user files.
+ * Further generalizing example script and packaging for users own
+ customized scripts.
+
+ -- Daniel Baumann <daniel@debian.org> Sat, 05 Jun 2010 14:08:58 +0200
+
+live-config (2.0~a4-1) unstable; urgency=low
+
+ * Adding shortcut parameter to disable automatic graphical login, no
+ matter which display manager would be used.
+ * Adding quotes in manpage for live-config.user-fullname.
+ * Documenting usable variables in configuration files in the manpage.
+ * Updating manpage to reflect that multiple hooks are supported at the
+ same time.
+ * Correcting typo in configuration files section of manpage.
+ * Running checkbashisms with -f and -x in Makefile.
+ * Correcting outdated check on /etc/init.d/live-config-sysvinit in
+ hook config script.
+ * Adding checks to ensure that scripts are not re-run with
+ persistency.
+
+ -- Daniel Baumann <daniel@debian.org> Wed, 02 Jun 2010 22:19:18 +0200
+
+live-config (2.0~a3-1) unstable; urgency=low
+
+ * Removing fixme note about configuration filename.
+ * Adding note about a logfile to todo.
+ * Adding reference to locales script in manpages.
+ * Adding live-noconfig option to exclude specific scripts from being
+ run (Closes: #583533).
+ * Reordering parameters to match ordering of scripts.
+ * Allow to use live-noconfig for excluding scripts without the need of
+ specifying live-config too.
+ * Updating German manpage translation.
+ * Using UTF-8 and umlauts in German manpage translation.
+ * Adding shortcut parameter to disable root privileges, no matter what
+ mechanism would be used.
+ * Replacing reference to live-initramfs with live-boot in manpage.
+ * Setting default user fullname to 'Debian Live user'.
+ * Adding wget to suggests.
+ * Adding script options in manpages.
+ * Improving wording in boot parameter (scripts) section of manpage.
+ * Improving German manpages translation.
+
+ -- Daniel Baumann <daniel@debian.org> Sun, 30 May 2010 09:35:32 +0200
+
+live-config (2.0~a2-1) unstable; urgency=low
+
+ * Additionally supporting configuration directories for configuration
+ files to ease customization.
+ * Correcting install command for manpages in Makefile.
+ * Simplyfing makefile a bit.
+ * Adding locales config script.
+ * Renumbering config scripts.
+
+ -- Daniel Baumann <daniel@debian.org> Thu, 27 May 2010 22:37:06 +0200
+
+live-config (2.0~a1-1) experimental; urgency=low
+
+ * Initial release.
+
+ -- Daniel Baumann <daniel@debian.org> Mon, 24 May 2010 09:14:49 +0200
--- live-config-2.0.15.orig/debian/live-config.bug-presubj
+++ live-config-2.0.15/debian/live-config.bug-presubj
@@ -0,0 +1,11 @@
+Before submitting a bug report against live-config, please make sure
+that you have read our guidlines for Debian Live bug reports:
+
+ http://live.debian.net/manual/
+
+By providing the required information as outlined in the guidlines makes
+sure that we can optimally reproduce and fix bugs, not doing so wastes a
+lot of time for both the maintainers and the submitters.
+
+Please keep in mind that bugs that lack the required information will
+likely be ignored.
--- live-config-2.0.15.orig/debian/source/format
+++ live-config-2.0.15/debian/source/format
@@ -0,0 +1 @@
+1.0