mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Fixes for examples in f5 modules (#49490)
So that they use provider instead of deprecated args method
This commit is contained in:
parent
40a5f7bfdf
commit
7c15417f62
58 changed files with 638 additions and 439 deletions
|
@ -48,29 +48,32 @@ author:
|
|||
EXAMPLES = r'''
|
||||
- name: Set the boot.quiet DB variable on the BIG-IP
|
||||
bigip_sys_db:
|
||||
user: admin
|
||||
password: secret
|
||||
server: lb.mydomain.com
|
||||
key: boot.quiet
|
||||
value: disable
|
||||
provider:
|
||||
user: admin
|
||||
password: secret
|
||||
server: lb.mydomain.com
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Disable the initial setup screen
|
||||
bigip_sys_db:
|
||||
user: admin
|
||||
password: secret
|
||||
server: lb.mydomain.com
|
||||
key: setup.run
|
||||
value: false
|
||||
provider:
|
||||
user: admin
|
||||
password: secret
|
||||
server: lb.mydomain.com
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Reset the initial setup screen
|
||||
bigip_sys_db:
|
||||
user: admin
|
||||
password: secret
|
||||
server: lb.mydomain.com
|
||||
key: setup.run
|
||||
state: reset
|
||||
provider:
|
||||
user: admin
|
||||
password: secret
|
||||
server: lb.mydomain.com
|
||||
delegate_to: localhost
|
||||
'''
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue