mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18c7c67308
- pkg/useragent - pkg/units - pkg/ulimit - pkg/truncindex - pkg/timeoutconn - pkg/term - pkg/tarsum - pkg/tailfile - pkg/systemd - pkg/stringutils - pkg/stringid - pkg/streamformatter - pkg/sockets - pkg/signal - pkg/proxy - pkg/progressreader - pkg/pools - pkg/plugins - pkg/pidfile - pkg/parsers - pkg/parsers/filters - pkg/parsers/kernel - pkg/parsers/operatingsystem Signed-off-by: Vincent Demeester <vincent@sbr.pm>
44 lines
1.1 KiB
Go
44 lines
1.1 KiB
Go
// Package operatingsystem provides helper function to get the operating system
|
|
// name for different platforms.
|
|
package operatingsystem
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"io/ioutil"
|
|
)
|
|
|
|
var (
|
|
// file to use to detect if the daemon is running in a container
|
|
proc1Cgroup = "/proc/1/cgroup"
|
|
|
|
// file to check to determine Operating System
|
|
etcOsRelease = "/etc/os-release"
|
|
)
|
|
|
|
// GetOperatingSystem gets the name of the current operating system.
|
|
func GetOperatingSystem() (string, error) {
|
|
b, err := ioutil.ReadFile(etcOsRelease)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
if i := bytes.Index(b, []byte("PRETTY_NAME")); i >= 0 {
|
|
b = b[i+13:]
|
|
return string(b[:bytes.IndexByte(b, '"')]), nil
|
|
}
|
|
return "", errors.New("PRETTY_NAME not found")
|
|
}
|
|
|
|
// IsContainerized returns true if we are running inside a container.
|
|
func IsContainerized() (bool, error) {
|
|
b, err := ioutil.ReadFile(proc1Cgroup)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
for _, line := range bytes.Split(b, []byte{'\n'}) {
|
|
if len(line) > 0 && !bytes.HasSuffix(line, []byte{'/'}) {
|
|
return true, nil
|
|
}
|
|
}
|
|
return false, nil
|
|
}
|