mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Correct documentation for deployment_mode flag (#25978)
This commit is contained in:
parent
2655fd2cbd
commit
5172bb068e
1 changed files with 3 additions and 3 deletions
|
@ -57,8 +57,8 @@ options:
|
||||||
default: 'no'
|
default: 'no'
|
||||||
deployment_mode:
|
deployment_mode:
|
||||||
description:
|
description:
|
||||||
- Only applies if state is C(present). If set it will only install gems
|
- Only applies if state is C(present). If set it will install gems in
|
||||||
that are in the default or production groups. Requires a Gemfile.lock
|
./vendor/bundle instead of the default location. Requires a Gemfile.lock
|
||||||
file to have been created prior
|
file to have been created prior
|
||||||
type: bool
|
type: bool
|
||||||
default: 'no'
|
default: 'no'
|
||||||
|
@ -99,7 +99,7 @@ EXAMPLES = '''
|
||||||
state: present
|
state: present
|
||||||
exclude_groups: production
|
exclude_groups: production
|
||||||
|
|
||||||
# Only install gems from the default and production groups
|
# Install gems into ./vendor/bundle
|
||||||
- bundler:
|
- bundler:
|
||||||
state: present
|
state: present
|
||||||
deployment_mode: yes
|
deployment_mode: yes
|
||||||
|
|
Loading…
Reference in a new issue