github.com/juju/juju@v0.0.0-20240430160146-1752b71fcf00/service/systemd/service_unix.go (about) 1 // Copyright 2015 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 //go:build !windows 5 6 package systemd 7 8 import ( 9 "github.com/coreos/go-systemd/v22/util" 10 ) 11 12 // IsRunning returns whether or not systemd is the local init system. 13 func IsRunning() bool { 14 return util.IsRunningSystemd() 15 }