Merge pull request #34901 from rallytime/fix-34893

Add VirtuozzoLinux to the list of enabled distros for rpm.py
This commit is contained in:
Mike Place 2016-07-22 16:23:48 -06:00 committed by GitHub
commit ad640cc046

View file

@ -51,7 +51,7 @@ def __virtual__():
except Exception:
return (False, 'The rpm execution module failed to load: failed to detect os or os_family grains.')
enabled = ('amazon', 'xcp', 'xenserver')
enabled = ('amazon', 'xcp', 'xenserver', 'VirtuozzoLinux')
if os_family in ['redhat', 'suse'] or os_grain in enabled:
return __virtualname__