aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
authorOphestra Umiker <cat@ophivana.moe>2024-10-27 12:08:17 +0900
committerOphestra Umiker <cat@ophivana.moe>2024-10-27 12:09:34 +0900
commit7df9d8d01dadcb05396d278aba11afc2ab4a2328 (patch)
tree9114e61306153b50b2def1ab6f817af49e266427 /main.go
parent6d8bcb63f28fb289aef8d4b702d7d938ac0af4eb (diff)
system: move sd_booted implementation to os abstraction
This implements lazy loading of the systemd marker (they are not accessed in init and shim) and ensures consistent behaviour when running with a stub. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 7bb7ffe6..85fb868b 100644
--- a/main.go
+++ b/main.go
@@ -30,7 +30,7 @@ func main() {
flag.Parse()
fmsg.SetVerbose(flagVerbose)
- if internal.SdBootedV {
+ if os.SdBooted() {
fmsg.VPrintln("system booted with systemd as init system")
}