diff --git a/salt/modules/aptpkg.py b/salt/modules/aptpkg.py index 5b0b461c6f..ce162e605d 100644 --- a/salt/modules/aptpkg.py +++ b/salt/modules/aptpkg.py @@ -89,6 +89,8 @@ def __virtual__(): return __virtualname__ elif __grains__.get('os_family', False) == 'Debian': return __virtualname__ + elif __grains__.get('os_family', False) == 'Cumulus': + return __virtualname__ return (False, 'The pkg module could not be loaded: unsupported OS family')