1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #3617 from dermute/devel

svr4pkg doesn't work on Sol10
This commit is contained in:
Michael DeHaan 2013-07-22 04:37:10 -07:00
commit 5e02759570

View file

@ -74,7 +74,7 @@ def package_installed(module, name):
cmd = [module.get_bin_path('pkginfo', True)]
cmd.append('-q')
cmd.append(name)
rc, out, err = module.run_command(' '.join(cmd), shell=False)
rc, out, err = module.run_command(' '.join(cmd))
if rc == 0:
return True
else: