From f83cd4eb6b8f217aed9d042a19d445b503cec8363892522f7eb95ee662009df4 Mon Sep 17 00:00:00 2001 From: Jeff Mahoney Date: Thu, 9 May 2024 16:09:37 -0400 Subject: [PATCH] label-install: fix more typoes --- container/scripts/label-install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/container/scripts/label-install b/container/scripts/label-install index 74e8580..fd5f3dc 100755 --- a/container/scripts/label-install +++ b/container/scripts/label-install @@ -31,7 +31,7 @@ if test ! -e "/host/etc/radvd.conf"; then } prefix=`printf "fd%02x:%04x:%04x:0001::/64\n" $(($(random) % 256)) $(random) $(random)` - sed -e "s,prefix (fd.*/64),prefix $prefix," $ORIGIN/etc/radvd.conf > $HOST/etc/radvd.conf + sed -e "s,prefix fd.*/64,prefix $prefix," $ORIGIN/etc/radvd.conf > $HOST/etc/radvd.conf echo "radvd-install: created /etc/radvd.conf with ULA prefix $prefix" installed=true @@ -39,7 +39,7 @@ fi if test ! -e "$QUADLET_DIR/$QUADLET_FILENAME"; then mkdir -p "$QUADLET_DIR" - sed -e "s,%IMAGE%,%{IMAGE},g" "$ORIGIN/container/quadlet/${QUADLET_FILENAME}.in" \ + sed -e "s,%IMAGE%,${IMAGE},g" "$ORIGIN/container/quadlet/${QUADLET_FILENAME}.in" \ > "$QUADLET_DIR/${QUADLET_FILENAME}" echo "radvd-install: installed $QUADLET_FILENAME quadlet" chroot "$HOST" systemctl daemon-reload