Brings postgresql_db examples in line with documentation.

As of now, the documentation lists a parameter as "name",
whereas the examples use a parameter called "db". This brings
them in line.
reviewable/pr18780/r1
Dan Robinson 11 years ago
parent 003c86e250
commit 80c8a0bfd6

@ -90,12 +90,12 @@ author: Lorin Hochstein
EXAMPLES = '''
# Create a new database with name "acme"
- postgresql_db: db=acme
- postgresql_db: name=acme
# Create a new database with name "acme" and specific encoding and locale
# settings. If a template different from "template0" is specified, encoding
# and locale settings must match those of the template.
- postgresql_db: db=acme
- postgresql_db: name=acme
encoding='UTF-8'
lc_collate='de_DE.UTF-8'
lc_ctype='de_DE.UTF-8'

Loading…
Cancel
Save