mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add systemd.SdBooted()
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)
This commit is contained in:
parent
cb43fd0071
commit
1296d5ce9a
1 changed files with 15 additions and 0 deletions
15
pkg/systemd/booted.go
Normal file
15
pkg/systemd/booted.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
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()
|
||||
}
|
Loading…
Reference in a new issue