mirror of
https://github.com/kairos-io/osbuilder.git
synced 2025-08-17 23:36:58 +00:00
WIP
Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>
This commit is contained in:
parent
497ecf90df
commit
e5987cfbc3
13
tools-image/enki/pkg/action/converter.go
Normal file
13
tools-image/enki/pkg/action/converter.go
Normal file
@ -0,0 +1,13 @@
|
||||
package action
|
||||
|
||||
// ConverterAction is the action that converts a non-kairos image to a Kairos one.
|
||||
// The conversion happens in a best-effort manner. It's not guaranteed that
|
||||
// any distribution will successfully be converted to a Kairos flavor. See
|
||||
// the Kairos releases for known-to-work flavors.
|
||||
type ConverterAction struct {
|
||||
rootFSPath string
|
||||
}
|
||||
|
||||
func NewConverterAction() *ConverterAction {
|
||||
return &ConverterAction{}
|
||||
}
|
11
tools-image/enki/pkg/action/converter_test.go
Normal file
11
tools-image/enki/pkg/action/converter_test.go
Normal file
@ -0,0 +1,11 @@
|
||||
package action_test
|
||||
|
||||
import (
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
//. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
var _ = Describe("BuildISOAction", func() {
|
||||
It("adds the framework bits", func() {
|
||||
})
|
||||
})
|
Loading…
Reference in New Issue
Block a user