diff --git a/debian/changelog b/debian/changelog index f3b09b8f..c4ae39be 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (2.415) UNRELEASED; urgency=medium + + * add var/lib/snapd/classic in ubuntu-core + + -- Michael Vogt Wed, 08 Jun 2016 19:10:13 +0200 + livecd-rootfs (2.414) yakkety; urgency=medium * Update post-debootstrap hashes for ubuntu-touch. diff --git a/live-build/ubuntu-core/hooks/700-classic-dir b/live-build/ubuntu-core/hooks/700-classic-dir new file mode 100644 index 00000000..30252613 --- /dev/null +++ b/live-build/ubuntu-core/hooks/700-classic-dir @@ -0,0 +1,13 @@ +#!/bin/sh +# +# removing debian packaging artifacts + +set -ex + +echo "I: Adding var/lib/snapd/classic" + +PREFIX=binary/boot/filesystem.dir + +(cd $PREFIX + install -m755 -d var/lib/snapd/classic +)