modules: fix examples to use FQCN (#644)

* modules: fix examples to use FQCN

* fix

* fix

* fix
This commit is contained in:
Andrew Klychkov 2020-07-13 22:50:31 +03:00 committed by GitHub
parent 8b92e0454d
commit 41cfdda6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
533 changed files with 2130 additions and 2130 deletions

View file

@ -80,57 +80,57 @@ options:
'''
EXAMPLES = '''
- name: Install cask
homebrew_cask:
community.general.homebrew_cask:
name: alfred
state: present
- name: Remove cask
homebrew_cask:
community.general.homebrew_cask:
name: alfred
state: absent
- name: Install cask with install options
homebrew_cask:
community.general.homebrew_cask:
name: alfred
state: present
install_options: 'appdir=/Applications'
- name: Install cask with install options
homebrew_cask:
community.general.homebrew_cask:
name: alfred
state: present
install_options: 'debug,appdir=/Applications'
- name: Allow external app
homebrew_cask:
community.general.homebrew_cask:
name: alfred
state: present
accept_external_apps: True
- name: Remove cask with force option
homebrew_cask:
community.general.homebrew_cask:
name: alfred
state: absent
install_options: force
- name: Upgrade all casks
homebrew_cask:
community.general.homebrew_cask:
upgrade_all: true
- name: Upgrade given cask with force option
homebrew_cask:
community.general.homebrew_cask:
name: alfred
state: upgraded
install_options: force
- name: Upgrade cask with greedy option
homebrew_cask:
community.general.homebrew_cask:
name: 1password
state: upgraded
greedy: True
- name: Using sudo password for installing cask
homebrew_cask:
community.general.homebrew_cask:
name: wireshark
state: present
sudo_password: "{{ ansible_become_pass }}"