Remove params option from examples

This commit is contained in:
Toshio Kuratomi 2017-12-19 11:01:14 -08:00
commit 120af786af
2 changed files with 1 additions and 24 deletions

View file

@ -431,25 +431,6 @@ EXAMPLES = '''
name: epel
file: external_repos
state: absent
#
# Allow to overwrite the yum_repository parameters by defining the parameters
# as a variable in the defaults or vars file:
#
# my_role_somerepo_params:
# # Disable GPG checking
# gpgcheck: no
# # Remove the gpgkey option
# gpgkey: null
#
- name: Add Some repo
yum_repository:
name: somerepo
description: Some YUM repo
baseurl: http://server.com/path/to/the/repo
gpgkey: http://server.com/keys/somerepo.pub
gpgcheck: yes
params: "{{ my_role_somerepo_params }}"
'''
RETURN = '''