refactor: start using module.yml for module metadata (#116)
* feat: add initial module.yml for rpm-ostree * chore: add shortdesc to module.yml * feat: add missing module.ymls * feat: add website rebuild action for module reference updates * chore: remove old readme in modules dir * refactor: switch to a hybrid module.yml + README arrangement * chore: switch docs to use starlight aside syntax
This commit is contained in:
parent
3914df391f
commit
5e455a1477
25 changed files with 227 additions and 242 deletions
23
modules/systemd/module.yml
Normal file
23
modules/systemd/module.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: systemd
|
||||
shortdesc: The systemd module streamlines the management of systemd units during image building.
|
||||
readme: https://raw.githubusercontent.com/ublue-os/bling/moduleyml/modules/systemd/README.md
|
||||
example: |
|
||||
type: systemd
|
||||
system:
|
||||
enabled:
|
||||
- example.service # Enabled (runs on system boot)
|
||||
disabled:
|
||||
- example.target # Disabled (does not run on system boot, unless other unit strictly requires it)
|
||||
masked:
|
||||
- example.service # Masked (does not run on system boot, under any circumstances)
|
||||
unmasked:
|
||||
- example.service # Unmasked (runs on system boot, even if previously masked)
|
||||
user:
|
||||
enabled:
|
||||
- example.timer # Enabled (runs for the user)
|
||||
disabled:
|
||||
- example.service # Disabled (does not run for the user, unless other unit strictly requires it)
|
||||
masked:
|
||||
- example.service # Masked (does not run for the user, under any circumstances)
|
||||
unmasked:
|
||||
- example.service # Unmasked (runs for the user, even if previously masked)
|
||||
Loading…
Add table
Add a link
Reference in a new issue