Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.core
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
19
Merge Requests
19
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos.core
Commits
c4902375
Commit
c4902375
authored
May 08, 2020
by
Jérome Perrin
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
grid: Fix OS detection
fixup
31864c5c
to make test pass
parent
df0f1bd1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
slapos/grid/distribution.py
slapos/grid/distribution.py
+3
-2
No files found.
slapos/grid/distribution.py
View file @
c4902375
...
@@ -55,9 +55,10 @@ def _debianize(os):
...
@@ -55,9 +55,10 @@ def _debianize(os):
minor releases would be seen as not compatible to each other.
minor releases would be seen as not compatible to each other.
"""
"""
distname
,
version
,
id_
=
os
distname
,
version
,
id_
=
os
distname
=
distname
.
lower
()
distname
_lower
=
distname
.
lower
()
if
distname
==
'debian'
and
'.'
in
version
:
if
distname
_lower
==
'debian'
and
'.'
in
version
:
version
=
version
.
split
(
'.'
)[
0
]
version
=
version
.
split
(
'.'
)[
0
]
distname
=
distname_lower
return
distname
,
version
,
id_
return
distname
,
version
,
id_
...
...
Łukasz Nowak
@luke
mentioned in merge request
!268 (merged)
·
Nov 25, 2020
mentioned in merge request
!268 (merged)
mentioned in merge request !268
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment