mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-05 10:13:09 +00:00
change -Syy to -Sy
-Syy do always update, which is not needed, since the caches might already be up to date.
This commit is contained in:
@@ -78,7 +78,7 @@ EXAMPLES = '''
|
||||
# Recursively remove package baz
|
||||
- pacman: name=baz state=absent recurse=yes
|
||||
|
||||
# Run the equivalent of "pacman -Syy" as a separate step
|
||||
# Run the equivalent of "pacman -Sy" as a separate step
|
||||
- pacman: update_cache=yes
|
||||
'''
|
||||
|
||||
@@ -124,7 +124,7 @@ def query_package(module, name, state="present"):
|
||||
|
||||
|
||||
def update_package_db(module):
|
||||
cmd = "pacman -Syy"
|
||||
cmd = "pacman -Sy"
|
||||
rc, stdout, stderr = module.run_command(cmd, check_rc=False)
|
||||
|
||||
if rc == 0:
|
||||
|
||||
Reference in New Issue
Block a user