代码拉取完成,页面将自动刷新
package drivers
import (
"io"
"os"
"path"
"strings"
"github.com/pkg/errors"
"github.com/sirupsen/logrus"
)
type KontainerDriver struct {
BaseDriver
}
var KontainerDriverPrefix = "kontainer-engine-driver-"
func NewKontainerDriver(builtin bool, name, url, hash string) *KontainerDriver {
d := &KontainerDriver{
BaseDriver{
Builtin: builtin,
DriverName: name,
URL: url,
DriverHash: hash,
BinaryPrefix: KontainerDriverPrefix,
},
}
if !strings.HasPrefix(d.DriverName, KontainerDriverPrefix) {
d.DriverName = KontainerDriverPrefix + d.DriverName
}
return d
}
func (d *KontainerDriver) Install() (string, error) {
if d.Builtin {
return "", nil
}
installPath := path.Join(installDir(), d.DriverName)
tmpPath := installPath + "-tmp"
f, err := os.OpenFile(tmpPath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
if err != nil {
return "", errors.Wrapf(err, "Couldn't open %v for writing", tmpPath)
}
defer f.Close()
src, err := os.Open(d.srcBinName())
if err != nil {
return "", errors.Wrapf(err, "Couldn't open %v for copying", d.srcBinName())
}
defer src.Close()
logrus.Infof("Copying %v => %v", d.srcBinName(), tmpPath)
_, err = io.Copy(f, src)
if err != nil {
return "", errors.Wrapf(err, "Couldn't copy %v to %v", d.srcBinName(), tmpPath)
}
err = os.Rename(tmpPath, installPath)
if err != nil {
return "", errors.Wrapf(err, "Couldn't copy driver %v to %v", d.Name(), installPath)
}
return path.Join(runDir(), d.DriverName), nil
}
func (d *KontainerDriver) Exists() bool {
if d.DriverName == "" {
return false
}
if d.Builtin {
return true
}
binaryPath := path.Join(installDir(), d.DriverName)
_, err := os.Stat(binaryPath)
return err == nil
}
func installDir() string {
if dl := os.Getenv("CATTLE_DEV_MODE"); dl != "" {
return "./management-state/bin"
}
return "/opt/jail/driver-jail/management-state/bin"
}
func runDir() string {
if dl := os.Getenv("CATTLE_DEV_MODE"); dl != "" {
return "./management-state/bin"
}
return "/management-state/bin"
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。