Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/autostart/systemd/systemd_linux.go
2608 views
1
// SPDX-FileCopyrightText: Copyright The Lima Authors
2
// SPDX-License-Identifier: Apache-2.0
3
4
package systemd
5
6
import (
7
"github.com/coreos/go-systemd/v22/util"
8
"github.com/sirupsen/logrus"
9
)
10
11
func CurrentUnitName() string {
12
unit, err := util.CurrentUnitName()
13
if err != nil {
14
logrus.WithError(err).Debug("cannot determine current systemd unit name")
15
}
16
return unit
17
}
18
19
func IsRunningSystemd() bool {
20
return util.IsRunningSystemd()
21
}
22
23