From 07ad1a3531ee010ee9d60c869251cc9338008ebb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20=27sil2100=27=20Zemczak?= Date: Wed, 25 Oct 2023 11:24:58 +0200 Subject: [PATCH] Changelog entry, add postinst to use always up-to-date git livecd-rootfs contents. --- debian/changelog | 6 ++++++ debian/postinst | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 debian/postinst diff --git a/debian/changelog b/debian/changelog index a32083ec..cb6e7cae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (23.10.56~core1) UNRELEASED; urgency=medium + + * Experiment with ubuntu-core-desktop livefs builds. + + -- Ɓukasz 'sil2100' Zemczak Wed, 25 Oct 2023 11:20:22 +0200 + livecd-rootfs (23.10.55) mantic; urgency=medium * fix: add 6.5 kernel appamor features to livecd-rootfs based on diff --git a/debian/postinst b/debian/postinst new file mode 100644 index 00000000..817eff9e --- /dev/null +++ b/debian/postinst @@ -0,0 +1,9 @@ +#!/bin/sh + +set -ex + +git clone https://git.launchpad.net/livecd-rootfs -b ubuntu-core-desktop /tmp/livecd-rootfs +mv /usr/share/livecd-rootfs/live-build /usr/share/livecd-rootfs/live-build.orig +mv /tmp/livecd-rootfs/live-build /usr/share/livecd-rootfs/live-build + +rm -rf /tmp/livecd-rootfs