osbuild2: support setting the default zone in firewall stage

Related to https://github.com/osbuild/osbuild/pull/980

Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
Tomas Hozza 2022-03-01 12:06:10 +01:00 committed by Tom Gundersen
parent 296313f588
commit cc413d4b2d

View file

@ -4,6 +4,7 @@ type FirewallStageOptions struct {
Ports []string `json:"ports,omitempty"`
EnabledServices []string `json:"enabled_services,omitempty"`
DisabledServices []string `json:"disabled_services,omitempty"`
DefaultZone string `json:"default_zone,omitempty"`
}
func (FirewallStageOptions) isStageOptions() {}