Blame internal/osbuild/groups_stage.go

Packit 63bb0d
package osbuild
Packit 63bb0d
Packit 63bb0d
type GroupsStageOptions struct {
Packit 63bb0d
	Groups map[string]GroupsStageOptionsGroup `json:"groups"`
Packit 63bb0d
}
Packit 63bb0d
Packit 63bb0d
func (GroupsStageOptions) isStageOptions() {}
Packit 63bb0d
Packit 63bb0d
type GroupsStageOptionsGroup struct {
Packit 63bb0d
	Name string `json:"name"`
Packit 63bb0d
	GID  *int   `json:"gid,omitempty"`
Packit 63bb0d
}
Packit 63bb0d
Packit 63bb0d
func NewGroupsStage(options *GroupsStageOptions) *Stage {
Packit 63bb0d
	return &Stage{
Packit 63bb0d
		Name:    "org.osbuild.groups",
Packit 63bb0d
		Options: options,
Packit 63bb0d
	}
Packit 63bb0d
}