diff -Nru livecd-rootfs-2.349~ppa1/debian/changelog livecd-rootfs-2.349~ppa2/debian/changelog
--- livecd-rootfs-2.349~ppa1/debian/changelog 2015-10-22 11:32:08.000000000 +0200
+++ livecd-rootfs-2.349~ppa2/debian/changelog 2015-10-22 12:31:06.000000000 +0200
@@ -1,3 +1,10 @@
+livecd-rootfs (2.349~ppa2) UNRELEASED; urgency=medium
+
+ * add /etc/default/watchdog to /etc/writable/default/ and link it for atomic
+ write
+
+ -- Oliver Grawert <ogra@ubuntu.com> Thu, 22 Oct 2015 12:30:27 +0200
+
livecd-rootfs (2.349~ppa1) wily; urgency=medium
* bump tss user UID, else it matchess dnsmasq and bad things happen
diff -Nru livecd-rootfs-2.349~ppa1/live-build/ubuntu-core/hooks/08-etc-writable.chroot livecd-rootfs-2.349~ppa2/live-build/ubuntu-core/hooks/08-etc-writable.chroot
--- livecd-rootfs-2.349~ppa1/live-build/ubuntu-core/hooks/08-etc-writable.chroot 2015-10-09 17:50:05.000000000 +0200
+++ livecd-rootfs-2.349~ppa2/live-build/ubuntu-core/hooks/08-etc-writable.chroot 2015-10-22 12:30:22.000000000 +0200
@@ -1,11 +1,11 @@
#!/bin/sh
set -e
-mkdir -p /etc/writable
+mkdir -p /etc/writable/default
# cloud-init needs to be able to modify hostname and has the ability to
# set the other two.
-for f in timezone localtime hostname; do
+for f in timezone localtime hostname default/watchdog; do
if [ -e /etc/$f ]; then
echo "I: Moving /etc/$f to /etc/writable/"
mv /etc/$f /etc/writable/$f