Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
lima-vm
GitHub Repository: lima-vm/lima
Path: blob/master/pkg/autostart/systemd/systemd_others.go
2633 views
1
//go:build !linux
2
3
// SPDX-FileCopyrightText: Copyright The Lima Authors
4
// SPDX-License-Identifier: Apache-2.0
5
6
package systemd
7
8
func CurrentUnitName() string {
9
return ""
10
}
11
12
func IsRunningSystemd() bool {
13
return false
14
}
15
16