python2- prefix for fedora 26 packages

This commit is contained in:
Daniel Wallace 2017-07-31 13:25:27 -06:00
parent bb1dfd4a42
commit 1958d18634

View file

@ -181,7 +181,10 @@ 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:
vl_plugin = 'python-dnf-plugins-extras-versionlock'
else:
vl_plugin = 'python2-dnf-plugins-extras-versionlock'
else:
vl_plugin = 'yum-versionlock' \
if __grains__.get('osmajorrelease') == '5' \