mirror of
https://github.com/rclone/rclone.git
synced 2025-06-15 17:37:15 +02:00
18 lines
264 B
Go
18 lines
264 B
Go
// +build linux,!android
|
|
|
|
package docker
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/coreos/go-systemd/activation"
|
|
"github.com/coreos/go-systemd/util"
|
|
)
|
|
|
|
func systemdActivationFiles() []*os.File {
|
|
if util.IsRunningSystemd() {
|
|
return activation.Files(false)
|
|
}
|
|
return nil
|
|
}
|