Blame internal/osbuild2/ostree_preptree_stage.go

Packit Service 15f37d
package osbuild2
Packit Service 15f37d
Packit Service 15f37d
type OSTreePrepTreeStageOptions struct {
Packit Service 15f37d
	EtcGroupMembers []string `json:"etc_group_members,omitempty"`
Packit Service 15f37d
}
Packit Service 15f37d
Packit Service 15f37d
func (OSTreePrepTreeStageOptions) isStageOptions() {}
Packit Service 15f37d
Packit Service 15f37d
// The OSTree PrepTree (org.osbuild.ostree.preptree) stage transforms the
Packit Service 15f37d
// tree to an ostree layout.
Packit Service 15f37d
func NewOSTreePrepTreeStage(options *OSTreePrepTreeStageOptions) *Stage {
Packit Service 15f37d
	return &Stage{
Packit Service 15f37d
		Type:    "org.osbuild.ostree.preptree",
Packit Service 15f37d
		Options: options,
Packit Service 15f37d
	}
Packit Service 15f37d
}