Browse Source

daemon: remove use of deprecated system.GetOSVersion()

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 5 years ago
parent
commit
044b74e33b
1 changed files with 1 additions and 2 deletions
  1. 1 2
      daemon/daemon_windows.go

+ 1 - 2
daemon/daemon_windows.go

@@ -223,8 +223,7 @@ func verifyDaemonSettings(config *config.Config) error {
 func checkSystem() error {
 	// Validate the OS version. Note that dockerd.exe must be manifested for this
 	// call to return the correct version.
-	osv := system.GetOSVersion()
-	if osv.MajorVersion < 10 {
+	if osversion.Get().MajorVersion < 10 {
 		return fmt.Errorf("This version of Windows does not support the docker daemon")
 	}
 	if osversion.Build() < osversion.RS1 {