Added `-y` flag to `query_package`

* library/packaging/pkgin:

Signed-off-by: giorgio-v <giorgio@refactor.it>
reviewable/pr18780/r1
giorgio-v 11 years ago
parent be065a77d1
commit 6a92db4060

@ -64,7 +64,7 @@ def query_package(module, pkgin_path, name, state="present"):
if state == "present":
rc, out, err = module.run_command("%s list | grep ^%s" % (pkgin_path, name))
rc, out, err = module.run_command("%s -y list | grep ^%s" % (pkgin_path, name))
if rc == 0:
# At least one package with a package name that starts with ``name``

Loading…
Cancel
Save