add 'version_add'
This commit is contained in:
parent
bf7498bc64
commit
873c478853
1 changed files with 3 additions and 7 deletions
|
@ -62,7 +62,7 @@ options:
|
|||
required: false
|
||||
default: "no"
|
||||
choices: ["yes", "no"]
|
||||
version_added: "1.3"
|
||||
version_added: "2.0"
|
||||
|
||||
update_cache:
|
||||
description:
|
||||
|
@ -72,12 +72,13 @@ options:
|
|||
default: "no"
|
||||
choices: ["yes", "no"]
|
||||
|
||||
upgrade
|
||||
upgrade:
|
||||
description:
|
||||
- Whether or not to upgrade whole system
|
||||
required: false
|
||||
default: "no"
|
||||
choices: ["yes", "no"]
|
||||
version_added: "2.0"
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
|
@ -153,11 +154,6 @@ def update_package_db(module):
|
|||
else:
|
||||
module.fail_json(msg="could not update package db")
|
||||
|
||||
def upgrade(module):
|
||||
cmdupgrade = "pacman -Suq --noconfirm"
|
||||
cmdneedrefresh = "pacman -Supq"
|
||||
rc, stdout, stderr = module.run_command(cmdneedrefresh, check_rc=False)
|
||||
|
||||
def upgrade(module):
|
||||
cmdupgrade = "pacman -Suq --noconfirm"
|
||||
cmdneedrefresh = "pacman -Supq"
|
||||
|
|
Loading…
Reference in a new issue