2021-09-09 14:25:25 +02:00
|
|
|
//go:build !linux || android
|
2021-01-03 01:05:52 +01:00
|
|
|
|
|
|
|
package docker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
)
|
|
|
|
|
2022-06-24 18:34:37 +02:00
|
|
|
//lint:ignore U1000 unused when not building linux
|
2021-01-03 01:05:52 +01:00
|
|
|
func systemdActivationFiles() []*os.File {
|
|
|
|
return nil
|
|
|
|
}
|