mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
This is a conversion of sd_booted() from libsystemd to go and checks if the system was booted with systemd. Docker-DCO-1.1-Signed-off-by: Alexander Larsson <alexl@redhat.com> (github: alexlarsson)
16 lines
201 B
Go
16 lines
201 B
Go
package systemd
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
// Conversion to Go of systemd's sd_booted()
|
|
func SdBooted() bool {
|
|
s, err := os.Stat("/run/systemd/system")
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
return s.IsDir()
|
|
}
|