mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
add pkgin to list of package managers in setup
This commit is contained in:
parent
2eedec777f
commit
4a9201ad65
1 changed files with 5 additions and 4 deletions
|
@ -82,10 +82,11 @@ class Facts(object):
|
||||||
# A list of dicts. If there is a platform with more than one
|
# A list of dicts. If there is a platform with more than one
|
||||||
# package manager, put the preferred one last. If there is an
|
# package manager, put the preferred one last. If there is an
|
||||||
# ansible module, use that as the value for the 'name' key.
|
# ansible module, use that as the value for the 'name' key.
|
||||||
PKG_MGRS = [ { 'path' : '/usr/bin/yum', 'name' : 'yum' },
|
PKG_MGRS = [ { 'path' : '/usr/bin/yum', 'name' : 'yum' },
|
||||||
{ 'path' : '/usr/bin/apt-get', 'name' : 'apt' },
|
{ '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' } ]
|
{ 'path' : '/usr/bin/pacman', 'name' : 'pacman' },
|
||||||
|
{ 'path' : '/opt/local/bin/pkgin', 'name' : 'pkgin' } ]
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.facts = {}
|
self.facts = {}
|
||||||
|
|
Loading…
Reference in a new issue