Allow pacman module to run on Manjaro

This commit is contained in:
Ch3LL 2017-06-22 16:39:36 -04:00
parent c90cb6798a
commit aa7c839fc5

View file

@ -37,7 +37,7 @@ def __virtual__():
'''
Set the virtual pkg module if the os is Arch
'''
if __grains__['os_family'] == 'Arch':
if __grains__['os_family'] in ('Arch', 'ManjaroLinux'):
return __virtualname__
return (False, 'The pacman module could not be loaded: unsupported OS family.')