~juju-qa/ubuntu/xenial/juju/xenial-2.0-beta3

« back to all changes in this revision

Viewing changes to src/github.com/juju/utils/series/supportedseries.go

  • Committer: Martin Packman
  • Date: 2016-03-30 19:31:08 UTC
  • mfrom: (1.1.41)
  • Revision ID: martin.packman@canonical.com-20160330193108-h9iz3ak334uk0z5r
Merge new upstream source 2.0~beta3

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
        "trusty":      "14.04",
64
64
        "utopic":      "14.10",
65
65
        "vivid":       "15.04",
 
66
        "win2008r2":   "win2008r2",
66
67
        "win2012hvr2": "win2012hvr2",
67
68
        "win2012hv":   "win2012hv",
68
69
        "win2012r2":   "win2012r2",
106
107
var windowsVersionMatchOrder = []string{
107
108
        "Hyper-V Server 2012 R2",
108
109
        "Hyper-V Server 2012",
 
110
        "Windows Server 2008 R2",
109
111
        "Windows Server 2012 R2",
110
112
        "Windows Server 2012",
111
113
        "Windows Server 2016",
122
124
var windowsVersions = map[string]string{
123
125
        "Hyper-V Server 2012 R2":         "win2012hvr2",
124
126
        "Hyper-V Server 2012":            "win2012hv",
 
127
        "Windows Server 2008 R2":         "win2008r2",
125
128
        "Windows Server 2012 R2":         "win2012r2",
126
129
        "Windows Server 2012":            "win2012",
127
130
        "Windows Server 2016":            "win2016",