Files
podman/pkg/machine/stdpull/local.go
Brent Baude f23b144c60 Podman Machine AppleHV CI fixes
This PR contains several fixes that allow the applehv podman tests run
to completion.

Signed-off-by: Brent Baude <baude@redhat.com>
2024-02-07 09:19:16 -06:00

32 lines
806 B
Go

package stdpull
import (
"os"
"github.com/containers/podman/v4/pkg/machine/compression"
"github.com/containers/podman/v4/pkg/machine/define"
"github.com/sirupsen/logrus"
)
type StdDiskPull struct {
finalPath *define.VMFile
inputPath *define.VMFile
}
func NewStdDiskPull(inputPath string, finalpath *define.VMFile) (*StdDiskPull, error) {
ip, err := define.NewMachineFile(inputPath, nil)
if err != nil {
return nil, err
}
return &StdDiskPull{inputPath: ip, finalPath: finalpath}, nil
}
func (s *StdDiskPull) Get() error {
if _, err := os.Stat(s.inputPath.GetPath()); err != nil {
// could not find disk
return err
}
logrus.Debugf("decompressing (if needed) %s to %s", s.inputPath.GetPath(), s.finalPath.GetPath())
return compression.Decompress(s.inputPath, s.finalPath.GetPath())
}