43a47ea209
This does what we should have done originally, and copies the bootupd bits directly from https://github.com/coreos/fedora-coreos-config/blob/testing-devel/manifests/bootupd.yaml And uses them via includes.
14 lines
536 B
YAML
14 lines
536 B
YAML
# KEEP THIS IN SYNC WITH https://github.com/coreos/fedora-coreos-config/blob/testing-devel/manifests/bootupd.yaml
|
|
# Integration with https://github.com/coreos/bootupd
|
|
# xref https://github.com/coreos/fedora-coreos-tracker/issues/510
|
|
packages:
|
|
- bootupd
|
|
|
|
postprocess:
|
|
- |
|
|
#!/bin/bash
|
|
set -xeuo pipefail
|
|
# Until we have https://github.com/coreos/rpm-ostree/pull/2275
|
|
mkdir -p /run
|
|
# Transforms /usr/lib/ostree-boot into a bootupd-compatible update payload
|
|
/usr/bin/bootupctl backend generate-update-metadata /
|