osbuild: add masked services to systemd stage

This commit is contained in:
Achilleas Koutsou 2022-10-19 15:08:17 +02:00 committed by Tom Gundersen
parent 5457b9fba2
commit 8c75975917

View file

@ -3,6 +3,7 @@ package osbuild
type SystemdStageOptions struct {
EnabledServices []string `json:"enabled_services,omitempty"`
DisabledServices []string `json:"disabled_services,omitempty"`
MaskedServices []string `json:"masked_services,omitempty"`
DefaultTarget string `json:"default_target,omitempty"`
}