incus-mirror/cmd/lxd-to-incus/targets_xbps.go
Stéphane Graber 40dd4f151d
Rewrite Go import path to v7
Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
2026-05-02 01:18:25 +02:00

61 lines
1.1 KiB
Go

package main
import (
"time"
incus "github.com/lxc/incus/v7/client"
"github.com/lxc/incus/v7/shared/subprocess"
"github.com/lxc/incus/v7/shared/util"
)
type targetXbps struct{}
func (s *targetXbps) present() bool {
if !util.PathExists("/var/db/xbps/.incus-files.plist") {
return false
}
if !util.PathExists("/var/service/incus") {
return false
}
if !util.PathExists("/var/lib/incus/unix.socket") {
return false
}
return true
}
func (s *targetXbps) stop() error {
_, err := subprocess.RunCommand("sv", "stop", "incus")
return err
}
func (s *targetXbps) start() error {
_, err := subprocess.RunCommand("sv", "start", "incus")
if err != nil {
return err
}
// Wait for the socket to become available.
time.Sleep(5 * time.Second)
return nil
}
func (s *targetXbps) connect() (incus.InstanceServer, error) {
return incus.ConnectIncusUnix("/var/lib/incus/unix.socket", &incus.ConnectionArgs{SkipGetServer: true})
}
func (s *targetXbps) paths() (*daemonPaths, error) {
return &daemonPaths{
daemon: "/var/lib/incus",
logs: "/var/log/incus",
cache: "/var/cache/incus",
}, nil
}
func (s *targetXbps) name() string {
return "xbps"
}