From 1a41824efef5e11e947e94c22ea739396c2a5b3f Mon Sep 17 00:00:00 2001 From: Frederick Grose Date: Wed, 1 Feb 2023 20:44:57 -0500 Subject: [PATCH] fedora-live-base: Drop post processing for file additions. Remove code to copy licenses/release files & livecd-iso-to-disk, if needed. livecd-creator now handles this directly. (https://github.com/livecd-tools/livecd-tools/pull/260/commits/8d33dd973e9334d55109560efa5987553f88fbd7) --- fedora-live-base.ks | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/fedora-live-base.ks b/fedora-live-base.ks index 7aa09ad..205e114 100644 --- a/fedora-live-base.ks +++ b/fedora-live-base.ks @@ -104,17 +104,3 @@ touch /etc/machine-id %end - -%post --nochroot -# For livecd-creator builds only (lorax/livemedia-creator handles this directly) -if [ -n "$LIVE_ROOT" ]; then - cp "$INSTALL_ROOT"/usr/share/licenses/*-release-common/* "$LIVE_ROOT/" - - # only installed on x86, x86_64 - if [ -f /usr/bin/livecd-iso-to-disk ]; then - mkdir -p "$LIVE_ROOT/LiveOS" - cp /usr/bin/livecd-iso-to-disk "$LIVE_ROOT/LiveOS" - fi -fi - -%end