mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-03 01:03:09 +00:00
add pacman to list of package managers in setup module
This commit is contained in:
@@ -84,7 +84,8 @@ class Facts(object):
|
||||
# ansible module, use that as the value for the 'name' key.
|
||||
PKG_MGRS = [ { 'path' : '/usr/bin/yum', 'name' : 'yum' },
|
||||
{ 'path' : '/usr/bin/apt-get', 'name' : 'apt' },
|
||||
{ 'path' : '/usr/bin/zypper', 'name' : 'zypper' } ]
|
||||
{ 'path' : '/usr/bin/zypper', 'name' : 'zypper' },
|
||||
{ 'path' : '/usr/bin/pacman', 'name' : 'pacman' } ]
|
||||
|
||||
def __init__(self):
|
||||
self.facts = {}
|
||||
|
||||
Reference in New Issue
Block a user