mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Windows: Add service dependency ConDrv
Signed-off-by: Darren Stahl <darst@microsoft.com>
This commit is contained in:
parent
27695cd751
commit
b2a7f6abb3
1 changed files with 11 additions and 0 deletions
|
@ -13,6 +13,7 @@ import (
|
|||
"unsafe"
|
||||
|
||||
"github.com/Sirupsen/logrus"
|
||||
"github.com/docker/docker/pkg/system"
|
||||
"github.com/spf13/pflag"
|
||||
"golang.org/x/sys/windows"
|
||||
"golang.org/x/sys/windows/svc"
|
||||
|
@ -165,10 +166,20 @@ func registerService() error {
|
|||
return err
|
||||
}
|
||||
defer m.Disconnect()
|
||||
|
||||
depends := []string{}
|
||||
|
||||
// This dependency is required on build 14393 (RS1)
|
||||
// it is added to the platform in newer builds
|
||||
if system.GetOSVersion().Build == 14393 {
|
||||
depends = append(depends, "ConDrv")
|
||||
}
|
||||
|
||||
c := mgr.Config{
|
||||
ServiceType: windows.SERVICE_WIN32_OWN_PROCESS,
|
||||
StartType: mgr.StartAutomatic,
|
||||
ErrorControl: mgr.ErrorNormal,
|
||||
Dependencies: depends,
|
||||
DisplayName: "Docker Engine",
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue