mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ea65f0bca2
This used to return "Darwin\n", but now returns "Darwin" Signed-off-by: Simon Barendse <simon.barendse@gmail.com>
33 lines
968 B
Go
33 lines
968 B
Go
// +build freebsd darwin
|
|
|
|
package operatingsystem // import "github.com/docker/docker/pkg/parsers/operatingsystem"
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"os/exec"
|
|
"strings"
|
|
)
|
|
|
|
// GetOperatingSystem gets the name of the current operating system.
|
|
func GetOperatingSystem() (string, error) {
|
|
cmd := exec.Command("uname", "-s")
|
|
osName, err := cmd.Output()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return strings.TrimSpace(string(osName)), nil
|
|
}
|
|
|
|
// GetOperatingSystemVersion gets the version of the current operating system, as a string.
|
|
func GetOperatingSystemVersion() (string, error) {
|
|
// there's no standard unix way of getting this, sadly...
|
|
return "", fmt.Error("Unsupported on generic unix")
|
|
}
|
|
|
|
// IsContainerized returns true if we are running inside a container.
|
|
// No-op on FreeBSD and Darwin, always returns false.
|
|
func IsContainerized() (bool, error) {
|
|
// TODO: Implement jail detection for freeBSD
|
|
return false, errors.New("Cannot detect if we are in container")
|
|
}
|