Fix typo in RootFilesystemUUID
RootFilesystemUUDI -> RootFilesystemUUID
This commit is contained in:
parent
6603ae8d74
commit
f5cf649511
6 changed files with 6 additions and 6 deletions
|
|
@ -779,7 +779,7 @@ func (r *Fedora30) rawFSAssembler(filename string, size uint64) *osbuild.Assembl
|
|||
return osbuild.NewRawFSAssembler(
|
||||
&osbuild.RawFSAssemblerOptions{
|
||||
Filename: filename,
|
||||
RootFilesystemUUDI: id,
|
||||
RootFilesystemUUID: id,
|
||||
Size: size,
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -779,7 +779,7 @@ func (r *Fedora31) rawFSAssembler(filename string, size uint64) *osbuild.Assembl
|
|||
return osbuild.NewRawFSAssembler(
|
||||
&osbuild.RawFSAssemblerOptions{
|
||||
Filename: filename,
|
||||
RootFilesystemUUDI: id,
|
||||
RootFilesystemUUID: id,
|
||||
Size: size,
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -779,7 +779,7 @@ func (r *Fedora32) rawFSAssembler(filename string, size uint64) *osbuild.Assembl
|
|||
return osbuild.NewRawFSAssembler(
|
||||
&osbuild.RawFSAssemblerOptions{
|
||||
Filename: filename,
|
||||
RootFilesystemUUDI: id,
|
||||
RootFilesystemUUID: id,
|
||||
Size: size,
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -920,7 +920,7 @@ func (r *RHEL81) rawFSAssembler(filename string, size uint64) *osbuild.Assembler
|
|||
return osbuild.NewRawFSAssembler(
|
||||
&osbuild.RawFSAssemblerOptions{
|
||||
Filename: filename,
|
||||
RootFilesystemUUDI: id,
|
||||
RootFilesystemUUID: id,
|
||||
Size: size,
|
||||
FilesystemType: "xfs",
|
||||
})
|
||||
|
|
|
|||
|
|
@ -919,7 +919,7 @@ func (r *RHEL82) rawFSAssembler(filename string, size uint64) *osbuild.Assembler
|
|||
return osbuild.NewRawFSAssembler(
|
||||
&osbuild.RawFSAssemblerOptions{
|
||||
Filename: filename,
|
||||
RootFilesystemUUDI: id,
|
||||
RootFilesystemUUID: id,
|
||||
Size: size,
|
||||
FilesystemType: "xfs",
|
||||
})
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import "github.com/google/uuid"
|
|||
// image.
|
||||
type RawFSAssemblerOptions struct {
|
||||
Filename string `json:"filename"`
|
||||
RootFilesystemUUDI uuid.UUID `json:"root_fs_uuid"`
|
||||
RootFilesystemUUID uuid.UUID `json:"root_fs_uuid"`
|
||||
Size uint64 `json:"size"`
|
||||
FilesystemType string `json:"fs_type,omitempty"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue