mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
postgresql modules: fix examples to use FQCN (#643)
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user