From 7d5a0646a5c3c290f29a05ca11514f3f5b52bd7e Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 13 Dec 2024 07:53:28 -0500 Subject: [PATCH 1/2] Update to 2024 edition Prep for using finalize.d, but this is also just a minor cleanup. --- tier-0/manifest.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tier-0/manifest.yaml b/tier-0/manifest.yaml index 03aa667..f4baec4 100644 --- a/tier-0/manifest.yaml +++ b/tier-0/manifest.yaml @@ -1,7 +1,4 @@ - -# Modern defaults we want -boot-location: modules -tmp-is-dir: true +edition: "2024" # https://github.com/CentOS/centos-bootc/issues/167 machineid-compat: true # Be minimal From 279b050acbe12f986da9704b1d940e29c76cb591 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 13 Dec 2024 08:48:42 -0500 Subject: [PATCH 2/2] Create var/run -> ../run by default Signed-off-by: Colin Walters --- tier-0/finalize.d/01-var.sh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100755 tier-0/finalize.d/01-var.sh diff --git a/tier-0/finalize.d/01-var.sh b/tier-0/finalize.d/01-var.sh new file mode 100755 index 0000000..87e8b5c --- /dev/null +++ b/tier-0/finalize.d/01-var.sh @@ -0,0 +1,4 @@ +#!/bin/bash +# https://gitlab.com/fedora/bootc/base-images/-/issues/28 +set -xeuo pipefail +ln -s ../run var/run