win_chocolately document improvedments, mention win_hotfix and use of become (#31085)

This commit is contained in:
jhawkesworth 2017-09-29 10:47:38 +01:00 committed by ansibot
parent d7fa3ab487
commit 04afacc2ee

View file

@ -133,6 +133,9 @@ notes:
- When using verbosity 4 (C(-vvvv)) the C(stdout) output will be more verbose. - When using verbosity 4 (C(-vvvv)) the C(stdout) output will be more verbose.
- When using verbosity 5 (C(-vvvvv)) the C(stdout) output will include debug output. - When using verbosity 5 (C(-vvvvv)) the C(stdout) output will include debug output.
- This module will install or upgrade Chocolatey when needed. - This module will install or upgrade Chocolatey when needed.
- Some packages need an interactive user logon in order to install. You can use (C(become)) to achieve this.
- Even if you are connecting as local Administrator, using (C(become)) to become Administrator will give you an interactive user logon, see examples below.
- Use (M(win_hotfix) to install hotfixes instead of (M(win_chocolatey)) as (M(win_hotfix)) avoids using wusa.exe which cannot be run remotely.
author: author:
- Trond Hindenes (@trondhindenes) - Trond Hindenes (@trondhindenes)
- Peter Mounce (@petemounce) - Peter Mounce (@petemounce)
@ -173,10 +176,10 @@ EXAMPLES = r'''
name: git name: git
state: absent state: absent
- name: install multiple packages - name: Install multiple packages
win_chocolatey: win_chocolatey:
name: '{{ item }}' name: '{{ item }}'
state: absent state: present
with_items: with_items:
- pscx - pscx
- windirstat - windirstat
@ -202,6 +205,13 @@ EXAMPLES = r'''
proxy_url: http://proxy-server:8080/ proxy_url: http://proxy-server:8080/
proxy_username: user with \"escaped\" double quotes proxy_username: user with \"escaped\" double quotes
proxy_password: pass with \"escaped\" double quotes proxy_password: pass with \"escaped\" double quotes
- name: Install a package that requires 'become'
win_chocolatey:
name: officepro2013
become: yes
become_user: Administrator
become_method: runas
''' '''
RETURN = r''' RETURN = r'''