rpm_ostree_stage: Minor fixes to comments

Just a drive by commit while I was reading the code.
This commit is contained in:
Colin Walters 2021-06-15 13:47:43 -04:00 committed by Achilleas Koutsou
parent deb28fd139
commit a6ccde879b

View file

@ -1,13 +1,14 @@
package osbuild1
// The RPM-OSTree stage describes how to transform the imgae into an OSTree.
// RPMOSTreeStageOptions configures the invocation of the `rpm-ostree`
// process for generating an ostree commit.
type RPMOSTreeStageOptions struct {
EtcGroupMembers []string `json:"etc_group_members,omitempty"`
}
func (RPMOSTreeStageOptions) isStageOptions() {}
// NewLocaleStage creates a new Locale Stage object.
// NewRPMOSTreeStage creates a new rpm-ostree Stage object.
func NewRPMOSTreeStage(options *RPMOSTreeStageOptions) *Stage {
return &Stage{
Name: "org.osbuild.rpm-ostree",