Prep for working on custom base images. We want to support operating on rootfs that may not have been generated by rpm-ostree. Split this out as something that can gets passed separately to `rpm-ostree compose postprocess/commit`.
14 lines
264 B
YAML
14 lines
264 B
YAML
packages:
|
|
- ostree nss-altfiles
|
|
|
|
postprocess:
|
|
# Set up default root config
|
|
- |
|
|
#!/usr/bin/env bash
|
|
mkdir -p /usr/lib/ostree
|
|
cat > /usr/lib/ostree/prepare-root.conf << EOF
|
|
[composefs]
|
|
enabled = yes
|
|
[sysroot]
|
|
readonly = true
|
|
EOF
|