Parcourir la source

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)
Alexander Larsson il y a 11 ans
Parent
commit
1296d5ce9a
1 fichiers modifiés avec 15 ajouts et 0 suppressions
  1. 15 0
      pkg/systemd/booted.go

+ 15 - 0
pkg/systemd/booted.go

@@ -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()
+}