The helper functions were never used, we should aim to use the osbuild types just as regular structs for serialization purposes. Signed-off-by: Tom Gundersen <teg@jklm.no>
21 lines
642 B
Go
21 lines
642 B
Go
package osbuild
|
|
|
|
// TarAssemblerOptions desrcibe how to assemble a tree into a tar ball.
|
|
//
|
|
// The assembler tars and optionally compresses the tree using the provided
|
|
// compression type, and stores the output with the given filename.
|
|
type TarAssemblerOptions struct {
|
|
Filename string `json:"filename"`
|
|
Size uint64 `json:"size"`
|
|
Compression string `json:"compression,omitempty"`
|
|
}
|
|
|
|
func (TarAssemblerOptions) isAssemblerOptions() {}
|
|
|
|
// NewTarAssembler creates a new Tar Assembler object.
|
|
func NewTarAssembler(options *TarAssemblerOptions) *Assembler {
|
|
return &Assembler{
|
|
Name: "org.osbuild.tar",
|
|
Options: options,
|
|
}
|
|
}
|