Merge pull request #161 from cgwalters/enable-autoupdates
Enable `bootc-fetch-apply-updates.service` by default
This commit is contained in:
commit
7fdceab78a
|
|
@ -0,0 +1,11 @@
|
||||||
|
# Enable automatic updates by default
|
||||||
|
|
||||||
|
# Configuration for bootc
|
||||||
|
postprocess:
|
||||||
|
- |
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
target=/usr/lib/systemd/system/default.target.wants
|
||||||
|
mkdir -p $target
|
||||||
|
set -x
|
||||||
|
ln -s ../bootc-fetch-apply-updates.service $target
|
||||||
|
|
@ -54,6 +54,7 @@ include:
|
||||||
- ostree.yaml
|
- ostree.yaml
|
||||||
- bootc-config.yaml
|
- bootc-config.yaml
|
||||||
- initramfs.yaml
|
- initramfs.yaml
|
||||||
|
- autoupdates.yaml
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
# Even in tier-0, we have this. If you don't want SELinux today, you'll need
|
# Even in tier-0, we have this. If you don't want SELinux today, you'll need
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
../tier-0/autoupdates.yaml
|
||||||
Loading…
Reference in New Issue