Fix pkgin detection on NetBSD 6 and 7 (#15834)
Since this is now the default package manager, it got moved to another location on Netbsd : netbsd# type pkgin pkgin is a tracked alias for /usr/pkg/bin/pkgin netbsd# uname -a NetBSD netbsd.example.org 6.1.4 NetBSD 6.1.4 (GENERIC) amd64 But since the package manager is also used outside of NetBSD, we have to keep the /opt/local path too.
This commit is contained in:
parent
8f4243c3ec
commit
e0112a3db3
1 changed files with 1 additions and 0 deletions
|
@ -158,6 +158,7 @@ class Facts(object):
|
|||
{ 'path' : '/usr/sbin/urpmi', 'name' : 'urpmi' },
|
||||
{ 'path' : '/usr/bin/pacman', 'name' : 'pacman' },
|
||||
{ 'path' : '/bin/opkg', 'name' : 'opkg' },
|
||||
{ 'path' : '/usr/pkg/bin/pkgin', 'name' : 'pkgin' },
|
||||
{ 'path' : '/opt/local/bin/pkgin', 'name' : 'pkgin' },
|
||||
{ 'path' : '/opt/local/bin/port', 'name' : 'macports' },
|
||||
{ 'path' : '/usr/local/bin/brew', 'name' : 'homebrew' },
|
||||
|
|
Loading…
Reference in a new issue