From 5cbd365f2c808bacea82742eba63aa4ca233d9e7 Mon Sep 17 00:00:00 2001 From: Anton Midyukov Date: Wed, 12 May 2021 13:43:18 +0700 Subject: [PATCH] uuid-iso: drop 30-propagator-method-cdrom-fuid Not needed more. uuid assigned directly in configs. --- .../scripts.d/30-propagator-method-cdrom-fuid | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100755 features.in/uuid-iso/stage1/scripts.d/30-propagator-method-cdrom-fuid diff --git a/features.in/uuid-iso/stage1/scripts.d/30-propagator-method-cdrom-fuid b/features.in/uuid-iso/stage1/scripts.d/30-propagator-method-cdrom-fuid deleted file mode 100755 index 109a1273..00000000 --- a/features.in/uuid-iso/stage1/scripts.d/30-propagator-method-cdrom-fuid +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/sh -# postprocess configurations -# set special automatic method -# workaround the bug 39811 - -gcfg='boot/grub/grub.cfg' -scfg='syslinux/*.cfg' - -cd "$WORKDIR" - -# apply method disk with uuid if available -[ -n "$GLOBAL_UUID_ISO" ] || exit 0 - -if [ -n "$(find $scfg)" ]; then - sed -i "s/automatic=method:cdrom/automatic=method:cdrom,fuid:$GLOBAL_UUID_ISO/" $scfg -fi - -if [ -f "$gcfg" ]; then - sed -i "s/automatic=method:cdrom/automatic=method:cdrom,fuid:$GLOBAL_UUID_ISO/" $gcfg -fi