Salome HOME
fix test scripts
[tools/sat.git] / src / common / internal_config / distrib.pyconf
1 #!/usr/bin/env python
2 #-*- coding:utf-8 -*-
3
4 # distribution codes
5 # Code to use to replace the value returned by: lsb_release -si
6 # If no code is found an error will be raised.
7 DISTRIBUTIONS :
8 {
9     "bullxServer": "BS"
10     "CentOS": "CO"
11     "Debian": "DB"
12     "Fedora": "FD"
13     "LinuxMint": "MN"
14     "Mageia": "MG"
15     "MandrivaLinux": "MD"
16     "RedHatEnterpriseServer": "RH"
17     "Ubuntu": "UB"
18     "openSUSE project":"OS"
19 }
20
21 # versions substitution
22 # Code to use for release, to the replace value returned by: lsb_release -sr
23 # If no code is found the value is used.
24 VERSIONS :
25 {
26     "DB":
27     {
28         "unstable": "sid"
29         "5.0": "05"
30         "4.0": "04"
31             "6.0.7" : "06"
32             "6.0.10": "06"
33             "7.1" : "07"
34             "7.5" : "07"
35     }
36     "MD":
37     {
38         "2008.0": "08"
39         "2010.0": "10"
40         "2010.1": "10"
41         "2010.2": "10"
42         "2007.1": "07"
43         "2006.0": "06"
44         "4" : "06"
45     }
46     "MG":
47     {
48         "3": "03"
49         "4": "04"
50         "5": "05"
51         "6": "06"
52     }
53     "CO":
54     {
55         "7.1.1503": "7.1"
56     }
57 }