mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Merge pull request #42851 from terminalmage/bp-42651
Backport #42651 to 2016.11
This commit is contained in:
commit
2dde1f77e9
@ -180,7 +180,16 @@ def _check_versionlock():
|
||||
Ensure that the appropriate versionlock plugin is present
|
||||
'''
|
||||
if _yum() == 'dnf':
|
||||
vl_plugin = 'python-dnf-plugins-extras-versionlock'
|
||||
if int(__grains__.get('osmajorrelease')) >= 26:
|
||||
if six.PY3:
|
||||
vl_plugin = 'python3-dnf-plugin-versionlock'
|
||||
else:
|
||||
vl_plugin = 'python2-dnf-plugin-versionlock'
|
||||
else:
|
||||
if six.PY3:
|
||||
vl_plugin = 'python3-dnf-plugins-extras-versionlock'
|
||||
else:
|
||||
vl_plugin = 'python-dnf-plugins-extras-versionlock'
|
||||
else:
|
||||
vl_plugin = 'yum-versionlock' \
|
||||
if __grains__.get('osmajorrelease') == '5' \
|
||||
|
Loading…
Reference in New Issue
Block a user