Commit 5e027595 by Michael DeHaan

Merge pull request #3617 from dermute/devel

svr4pkg doesn't work on Sol10
parents a7a82c79 52321c15
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment