A couple of touch ups (#2288)
I peeked at #2281 a little late, thought this might help some as well.
This commit is contained in:
parent
2cf50cb971
commit
2ba75b7082
1 changed files with 3 additions and 2 deletions
|
@ -26,7 +26,7 @@ DOCUMENTATION = '''
|
||||||
module: win_package
|
module: win_package
|
||||||
version_added: "1.7"
|
version_added: "1.7"
|
||||||
author: Trond Hindenes
|
author: Trond Hindenes
|
||||||
short_description: Installs/Uninstalls a installable package, either from local file system or url
|
short_description: Installs/Uninstalls an installable package, either from local file system or url
|
||||||
description:
|
description:
|
||||||
- Installs or uninstalls a package.
|
- Installs or uninstalls a package.
|
||||||
- 'Optionally uses a product_id to check if the package needs installing. You can find product ids for installed programs in the windows registry either in C(HKLM:Software\\Microsoft\\Windows\CurrentVersion\\Uninstall) or for 32 bit programs C(HKLM:Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall)'
|
- 'Optionally uses a product_id to check if the package needs installing. You can find product ids for installed programs in the windows registry either in C(HKLM:Software\\Microsoft\\Windows\CurrentVersion\\Uninstall) or for 32 bit programs C(HKLM:Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall)'
|
||||||
|
@ -37,12 +37,13 @@ options:
|
||||||
required: true
|
required: true
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- name of the package. Just for logging reasons, will use the value of path if name isn't specified
|
- Name of the package, if name isn't specified the path will be used for log messages
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
product_id:
|
product_id:
|
||||||
description:
|
description:
|
||||||
- product id of the installed package (used for checking if already installed)
|
- product id of the installed package (used for checking if already installed)
|
||||||
|
- You can find product ids for installed programs in the windows registry either in C(HKLM:Software\\Microsoft\\Windows\CurrentVersion\\Uninstall) or for 32 bit programs C(HKLM:Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall)'
|
||||||
required: true
|
required: true
|
||||||
aliases: [productid]
|
aliases: [productid]
|
||||||
arguments:
|
arguments:
|
||||||
|
|
Loading…
Reference in a new issue