]> SALOME platform Git repositories - tools/sat.git/blob - src/internal_config/distrib.pyconf
Salome HOME
accept range 'version_1_0_0_to_2_0_0' as '_from_1_0_0_to_2_0_0'
[tools/sat.git] / src / 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": "CO"
17     "RedHatEnterpriseWorkstation" : "CO"
18     "Ubuntu": "UB"
19     "openSUSE project":"OS"
20 }
21
22 # versions substitution
23 # Code to use for release, to the replace value returned by: lsb_release -sr
24 # If no code is found the value is used.
25 VERSIONS :
26 {
27
28 # Do not do anything for the ubuntu machines (CEA dicision). 
29 #
30
31     "DB":
32     {
33         "unstable": "sid"
34         "5.0": "05"
35         "4.0": "04"
36             "6.0.7" : "06"
37             "6.0.10": "06"
38             "7.1" : "07"
39             "7.11" : "07"
40             "7.2" : "07"
41             "7.3" : "07"
42             "7.5" : "07"
43             "8.1" : "08"
44             "8.2" : "08"
45             "8.3" : "08"
46             "8.4" : "08"
47             "8.5" : "08"
48             "8.6" : "08"
49             "8.7" : "08"
50     }
51     "MD":
52     {
53         "2008.0": "08"
54         "2010.0": "10"
55         "2010.1": "10"
56         "2010.2": "10"
57         "2007.1": "07"
58         "2006.0": "06"
59         "4" : "06"
60     }
61     "MG":
62     {
63         "3": "03"
64         "4": "04"
65         "5": "05"
66         "6": "06"
67     }
68     "CO":
69     {
70         "7.1.1503": "7"
71         "7.2.1511": "7"
72         "7.3.1611": "7"
73         "6.1" : "6"
74         "6.2" : "6"
75         "6.3" : "6"
76         "6.4" : "6"
77         "6.5" : "6"
78         "6.6" : "6"
79         "6.7" : "6"
80     }
81 }
82