* chore(bling): uncomment example options * refactor(brew): remove duplicate "configuration options" setting in README, improve TSP docs * fix(chezmoi): make example an example and not a doc of the configuration options * chore(rpm-ostree): remove fake example examples should be runnable * fix(rpm-ostree): add replacing packages to typespec schema * fix(rpm-ostree): actually install the packages the repos are added for * feat(rpm-ostree): showcase installing from URL and using optfix in example * fix(rpm-ostree): add optfix to typespec * fix(systemd): real-world example instead of configuration docs duplicate
15 lines
No EOL
580 B
YAML
15 lines
No EOL
580 B
YAML
name: systemd
|
|
shortdesc: The systemd module streamlines the management of systemd units during image building.
|
|
readme: https://raw.githubusercontent.com/blue-build/modules/main/modules/systemd/README.md
|
|
typespec: https://raw.githubusercontent.com/blue-build/modules/main/modules/systemd/systemd.tsp
|
|
example: |
|
|
type: systemd
|
|
# this example disables automatic flatpak updates and enables a custom service unit for all users
|
|
system:
|
|
disabled:
|
|
- flatpak-system-update.timer
|
|
user:
|
|
enabled:
|
|
- my-custom.service
|
|
disabled:
|
|
- flatpak-user-update.timer |