9 lines
244 B
YAML
9 lines
244 B
YAML
# Enable automatic updates by default
|
|
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.timer $target
|