mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Allow pacman module to run on Manjaro
This commit is contained in:
parent
c90cb6798a
commit
aa7c839fc5
1 changed files with 1 additions and 1 deletions
|
@ -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.')
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue