Skip to content

Commit 14b444c

Browse files
committed
Remove systemd build tag
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
1 parent e950a27 commit 14b444c

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

systemd.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
// +build systemd
2-
31
package cgroups
42

53
import (
@@ -19,7 +17,7 @@ const (
1917
)
2018

2119
func Systemd() ([]Subsystem, error) {
22-
root, err := unifiedMountPoint()
20+
root, err := v1MountPoint()
2321
if err != nil {
2422
return nil, err
2523
}
@@ -39,8 +37,8 @@ func Slice(slice, name string) Path {
3937
if slice == "" {
4038
slice = defaultSlice
4139
}
42-
return func(subsystem Name) string {
43-
return filepath.Join(slice, unitName(name))
40+
return func(subsystem Name) (string, error) {
41+
return filepath.Join(slice, unitName(name)), nil
4442
}
4543
}
4644

0 commit comments

Comments
 (0)