File tree Expand file tree Collapse file tree 2 files changed +6
-58
lines changed Expand file tree Collapse file tree 2 files changed +6
-58
lines changed Original file line number Diff line number Diff line change 14
14
}
15
15
],
16
16
"operatingsystem_support" : [
17
- {
18
- "operatingsystem" : " RedHat" ,
19
- "operatingsystemrelease" : [
20
- " 7" ,
21
- " 8" ,
22
- " 9"
23
- ]
24
- },
25
- {
26
- "operatingsystem" : " CentOS" ,
27
- "operatingsystemrelease" : [
28
- " 7" ,
29
- " 8"
30
- ]
31
- },
32
- {
33
- "operatingsystem" : " OracleLinux" ,
34
- "operatingsystemrelease" : [
35
- " 7"
36
- ]
37
- },
38
- {
39
- "operatingsystem" : " Debian" ,
40
- "operatingsystemrelease" : [
41
- " 10" ,
42
- " 11" ,
43
- " 12"
44
- ]
45
- },
46
- {
47
- "operatingsystem" : " Scientific" ,
48
- "operatingsystemrelease" : [
49
- " 7"
50
- ]
51
- },
52
- {
53
- "operatingsystem" : " SLES" ,
54
- "operatingsystemrelease" : [
55
- " 12" ,
56
- " 15"
57
- ]
58
- },
59
17
{
60
18
"operatingsystem" : " Ubuntu" ,
61
19
"operatingsystemrelease" : [
62
- " 18.04" ,
63
- " 20.04" ,
64
- " 22.04"
65
- ]
66
- },
67
- {
68
- "operatingsystem" : " Rocky" ,
69
- "operatingsystemrelease" : [
70
- " 8"
71
- ]
72
- },
73
- {
74
- "operatingsystem" : " AlmaLinux" ,
75
- "operatingsystemrelease" : [
76
- " 8"
20
+ " 24.04"
77
21
]
78
22
}
79
23
],
Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ def ubuntu_2204?
32
32
os [ :family ] == 'ubuntu' && os [ :release ] . to_f == 22.04
33
33
end
34
34
35
+ def ubuntu_2404?
36
+ os [ :family ] == 'ubuntu' && os [ :release ] . to_f == 24.04
37
+ end
38
+
35
39
def sles_15?
36
40
os [ :family ] == 'sles' && os [ :release ] . to_i == 15
37
41
end
@@ -41,7 +45,7 @@ def debian_12?
41
45
end
42
46
43
47
def charset
44
- @charset ||= ( debian_12? || ubuntu_2204? || sles_15? ) ? 'utf8mb3' : 'utf8'
48
+ @charset ||= ( ubuntu_2404? || debian_12? || ubuntu_2204? || sles_15? ) ? 'utf8mb3' : 'utf8'
45
49
end
46
50
47
51
def get_db_cmd
You can’t perform that action at this time.
0 commit comments