From bf87878ba08b47f860072093b45b8bce1a0c9605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Mass=C3=A9?= Date: Fri, 12 Jun 2026 09:16:20 +0000 Subject: [PATCH] fix missing dirs + doc --- cookbooks/base/Makefile | 2 ++ cookbooks/redis/Makefile | 3 ++- scripts/generate-tarball.sh | 4 +++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/cookbooks/base/Makefile b/cookbooks/base/Makefile index 4e10fa1..371440f 100644 --- a/cookbooks/base/Makefile +++ b/cookbooks/base/Makefile @@ -3,6 +3,8 @@ SYSTEMD_MAIN_UNIT_NAMES := var-lib-virtiofs-data.mount SYSTEMD_MAIN_UNIT_NAMES += rpm-ostree-install-qemu-guest-agent.service SYSTEMD_MAIN_UNIT_NAMES += install-tools.service +TARGET_FILES += $(TARGET_CHROOT)/etc/quadlets/base/install-tools.d + # Include common Makefile include ../../scripts/common.mk diff --git a/cookbooks/redis/Makefile b/cookbooks/redis/Makefile index d05127f..ae23984 100644 --- a/cookbooks/redis/Makefile +++ b/cookbooks/redis/Makefile @@ -6,10 +6,11 @@ PROJECT_UID = 10021 PROJECT_GID = 10000 +TARGET_FILES += $(TARGET_CHROOT)/etc/quadlets/redis/acl.d + # Include common Makefile include ../../scripts/common.mk -TARGET_FILES += $(TARGET_CHROOT)/etc/quadlets/redis/acl.d $(TARGET_CHROOT)/etc/quadlets/redis/acl.d: install -m 0700 -o root -g root -D -d $@ diff --git a/scripts/generate-tarball.sh b/scripts/generate-tarball.sh index 08ea875..97253e7 100755 --- a/scripts/generate-tarball.sh +++ b/scripts/generate-tarball.sh @@ -15,7 +15,9 @@ # - BUTANE_BLOCKLIST: the path to a file containing a list of files and directories (one per line) to ignore # (i.e., files and directories that are already part of the CoreOS default installation # or belonging to another package). -# - SYSTEMD_MAIN_UNIT_NAMES: the list of systemd main unit names to enable. +# - SYSTEMD_START_UNITS: the list of systemd main unit names to start. +# - SYSTEMD_ENABLE_UNITS: the list of systemd unit names to enable. +# - PROJECT_USER: the project's user information (username, uid, gid, home directory). # # The path to of the output tarball is $1. #