Browse Source

fix missing dirs + doc

main
Nicolas Massé 1 week ago
parent
commit
bf87878ba0
  1. 2
      cookbooks/base/Makefile
  2. 3
      cookbooks/redis/Makefile
  3. 4
      scripts/generate-tarball.sh

2
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

3
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 $@

4
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.
#

Loading…
Cancel
Save