mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-08 09:19:09 -07:00
postgresql modules: fix examples to use FQCN (#643)
This commit is contained in:
parent
a424ee71e3
commit
f62b8027e0
22 changed files with 138 additions and 138 deletions
|
@ -122,7 +122,7 @@ EXAMPLES = r'''
|
|||
Create acme subscription in mydb database using acme_publication and
|
||||
the following connection parameters to connect to the publisher.
|
||||
Set the subscription owner as alice.
|
||||
postgresql_subscription:
|
||||
community.general.postgresql_subscription:
|
||||
db: mydb
|
||||
name: acme
|
||||
state: present
|
||||
|
@ -136,7 +136,7 @@ EXAMPLES = r'''
|
|||
dbname: mydb
|
||||
|
||||
- name: Assuming that acme subscription exists, try to change conn parameters
|
||||
postgresql_subscription:
|
||||
community.general.postgresql_subscription:
|
||||
db: mydb
|
||||
name: acme
|
||||
connparams:
|
||||
|
@ -147,20 +147,20 @@ EXAMPLES = r'''
|
|||
connect_timeout: 100
|
||||
|
||||
- name: Refresh acme publication
|
||||
postgresql_subscription:
|
||||
community.general.postgresql_subscription:
|
||||
db: mydb
|
||||
name: acme
|
||||
state: refresh
|
||||
|
||||
- name: Drop acme subscription from mydb with dependencies (cascade=yes)
|
||||
postgresql_subscription:
|
||||
community.general.postgresql_subscription:
|
||||
db: mydb
|
||||
name: acme
|
||||
state: absent
|
||||
cascade: yes
|
||||
|
||||
- name: Assuming that acme subscription exists and enabled, disable the subscription
|
||||
postgresql_subscription:
|
||||
community.general.postgresql_subscription:
|
||||
db: mydb
|
||||
name: acme
|
||||
state: present
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue