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 system: enabled: - example.service # Enabled (runs on system boot) disabled: - example.target # Disabled (does not run on system boot, unless another 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 users) disabled: - example.service # Disabled (does not run for the users, unless another unit strictly requires it) masked: - example.service # Masked (does not run for the users, under any circumstances) unmasked: - example.service # Unmasked (runs for the users, even if previously masked)