1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
python 3.8 removed linux_distribution support completely and leaves that
functionality to third-party modules, which is provided by 'distro'.
Just completely remove the backwards compatibility and completely rely on that
module.
diff --git a/salt/grains/core.py b/salt/grains/core.py
index f05276c..58edaee 100644
--- a/salt/grains/core.py
+++ b/salt/grains/core.py
@@ -22,6 +22,7 @@ import locale
import uuid
from errno import EACCES, EPERM
import datetime
+from distro import linux_distribution
# pylint: disable=import-error
try:
@@ -33,18 +34,6 @@ except ImportError:
__proxyenabled__ = ['*']
__FQDN__ = None
-# Extend the default list of supported distros. This will be used for the
-# /etc/DISTRO-release checking that is part of linux_distribution()
-from platform import _supported_dists
-_supported_dists += ('arch', 'mageia', 'meego', 'vmware', 'bluewhite64',
- 'slamd64', 'ovs', 'system', 'mint', 'oracle', 'void')
-
-# linux_distribution deprecated in py3.7
-try:
- from platform import linux_distribution
-except ImportError:
- from distro import linux_distribution
-
# Import salt libs
import salt.exceptions
import salt.log
@@ -1871,7 +1860,7 @@ def os_data():
)
(osname, osrelease, oscodename) = \
[x.strip('"').strip("'") for x in
- linux_distribution(supported_dists=_supported_dists)]
+ linux_distribution()]
# Try to assign these three names based on the lsb info, they tend to
# be more accurate than what python gets from /etc/DISTRO-release.
# It's worth noting that Ubuntu has patched their Python distribution
|