Merge pull request #3617 from dermute/devel

svr4pkg doesn't work on Sol10
pull/4420/head
Michael DeHaan 2013-07-22 04:37:10 -07:00
commit 5e02759570
1 changed files with 1 additions and 1 deletions

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: