1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
// Copyright 2017 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package manager
import (
"bytes"
"fmt"
"os/exec"
"strings"
"github.com/juju/utils/proxy"
)
// yum is the PackageManager implementations for rpm-based systems.
type zypper struct {
basePackageManager
}
// Search is defined on the PackageManager interface.
func (zypper *zypper) Search(pack string) (bool, error) {
_, code, err := RunCommandWithRetry(zypper.cmder.SearchCmd(pack), nil)
// zypper search returns 104 when it cannot find the package.
if code == 104 {
return false, nil
}
return true, err
}
// GetProxySettings is defined on the PackageManager interface.
func (zypper *zypper) GetProxySettings() (proxy.Settings, error) {
var res proxy.Settings
args := strings.Fields(zypper.cmder.GetProxyCmd())
if len(args) <= 1 {
return proxy.Settings{}, fmt.Errorf("expected at least 2 arguments, got %d %v", len(args), args)
}
cmd := exec.Command(args[0], args[1:]...)
out, err := CommandOutput(cmd)
if err != nil {
logger.Errorf("command failed: %v\nargs: %#v\n%s",
err, args, string(out))
return res, fmt.Errorf("command failed: %v", err)
}
output := string(bytes.Join(proxyRE.FindAll(out, -1), []byte("\n")))
for _, match := range proxyRE.FindAllStringSubmatch(output, -1) {
switch match[1] {
case "http":
res.Http = match[2]
case "https":
res.Https = match[2]
case "ftp":
res.Ftp = match[2]
}
}
return res, nil
}
|