Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>
This commit is contained in:
Dimitris Karakasilis 2023-08-31 15:33:33 +03:00
parent 497ecf90df
commit e5987cfbc3
2 changed files with 24 additions and 0 deletions

View 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{}
}

View 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() {
})
})