Blame internal/osbuild2/hostname_stage.go

Packit Service 15f37d
package osbuild2
Packit Service 15f37d
Packit Service 15f37d
type HostnameStageOptions struct {
Packit Service 15f37d
	Hostname string `json:"hostname"`
Packit Service 15f37d
}
Packit Service 15f37d
Packit Service 15f37d
func (HostnameStageOptions) isStageOptions() {}
Packit Service 15f37d
Packit Service 15f37d
func NewHostnameStage(options *HostnameStageOptions) *Stage {
Packit Service 15f37d
	return &Stage{
Packit Service 15f37d
		Type:    "org.osbuild.hostname",
Packit Service 15f37d
		Options: options,
Packit Service 15f37d
	}
Packit Service 15f37d
}