mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-25 21:22:44 +00:00
Adjust booleans in packaging modules. (#5154)
This commit is contained in:
parent
be2de15c66
commit
ddc989ec6d
38 changed files with 242 additions and 228 deletions
|
|
@ -36,7 +36,7 @@ options:
|
|||
description:
|
||||
- Accept any licences.
|
||||
type: bool
|
||||
default: no
|
||||
default: false
|
||||
aliases: [ accept, accept_licences ]
|
||||
be_name:
|
||||
description:
|
||||
|
|
@ -46,7 +46,7 @@ options:
|
|||
description:
|
||||
- Refresh publishers before execution.
|
||||
type: bool
|
||||
default: yes
|
||||
default: true
|
||||
'''
|
||||
EXAMPLES = '''
|
||||
- name: Install Vim
|
||||
|
|
@ -56,7 +56,7 @@ EXAMPLES = '''
|
|||
- name: Install Vim without refreshing publishers
|
||||
community.general.pkg5:
|
||||
name: editor/vim
|
||||
refresh: no
|
||||
refresh: false
|
||||
|
||||
- name: Remove finger daemon
|
||||
community.general.pkg5:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue