From 45e2ce10a496aa07d9749781d6e67e2e884c6571 Mon Sep 17 00:00:00 2001 From: rallytime Date: Fri, 22 Jul 2016 14:46:45 -0600 Subject: [PATCH] Add VirtuozzoLinux to the list of enabled distros for rpm.py --- salt/modules/rpm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/modules/rpm.py b/salt/modules/rpm.py index 106f2e965c51..8c855510f1e6 100644 --- a/salt/modules/rpm.py +++ b/salt/modules/rpm.py @@ -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__