~ubuntu-virt/cobbler/trunk

« back to all changes in this revision

Viewing changes to cobbler/codes.py

  • Committer: Jörgen Maas
  • Date: 2012-03-02 18:13:04 UTC
  • mfrom: (2069.3.3)
  • Revision ID: git-v1:fcf2321828a7488d9c9fd3a445d898f2cdece5b4
Merge pull request #76 from jmaas/master

first commit/pull request; small update to codes.py

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
]
42
42
 
43
43
VALID_OS_VERSIONS = {
44
 
    "redhat"  : [ "rhel3", "rhel4", "rhel5", "rhel6", "fedora14", "fedora15", "fedora16", "rawhide", "generic24", "generic26", "virtio26", "other" ],
45
 
    "suse"    : [ "sles9", "sles10", "sles11", "opensuse11.2", "opensuse11.3", "opensuse11.4", "opensuse12.1", "generic24", "generic26", "virtio26", "other" ],
 
44
    "redhat"  : [ "rhel3", "rhel4", "rhel5", "rhel6", "fedora14", "fedora15", "fedora16", "fedora17", "rawhide", "generic24", "generic26", "virtio26", "other" ],
 
45
    "suse"    : [ "sles9", "sles10", "sles11", "opensuse11.2", "opensuse11.3", "opensuse11.4", "opensuse12.1", "opensuse12.2", "generic24", "generic26", "virtio26", "other" ],
46
46
    "debian"  : [ "lenny", "squeeze", "stable", "testing", "unstable", "generic24", "generic26", "other" ],
47
 
    "ubuntu"  : [ "hardy", "lucid", "maverick", "natty" ],
 
47
    "ubuntu"  : [ "hardy", "lucid", "maverick", "natty", "precise" ],
48
48
    "generic" : [ "generic24", "generic26", "other" ],
49
49
    "windows" : [ "winxp", "win2k", "win2k3", "vista", "other" ],
50
50
    "unix"    : [ "solaris9", "solaris10", "other" ],
51
51
    "vmware"  : [ "esx4", "esxi4" ],
52
 
    "freebsd" : [ "7.3", "7.4", "8.1", "8.2", "9.0" ],
 
52
    "freebsd" : [ "7.3", "7.4", "8.1", "8.2", "8.3", "9.0", "9.1" ],
53
53
    "other"   : [ "msdos", "netware4", "netware5", "netware6", "generic", "other" ]
54
54
}
55
55