mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix priv argument in example.
Should be "priv", not "privs". Was correct in table, but wrong in examples.
This commit is contained in:
parent
151a9b385d
commit
20c6e5302b
1 changed files with 8 additions and 8 deletions
|
@ -57,9 +57,9 @@ Example privileges string format:
|
|||
Example action from Ansible :doc:`playbooks`::
|
||||
|
||||
- name: Create django user and grant access to database and products table
|
||||
postgresql_user db=acme user=django password=ceec4eif7ya privs=CONNECT/products:ALL
|
||||
postgresql_user db=acme user=django password=ceec4eif7ya priv=CONNECT/products:ALL
|
||||
|
||||
- name: Remove test user privileges from acme
|
||||
postgresql_user db=acme user=test privs=ALL/products:ALL state=absent fail_on_user=no
|
||||
postgresql_user db=acme user=test priv=ALL/products:ALL state=absent fail_on_user=no
|
||||
- name: Remove test user from test database and the cluster
|
||||
postgresql_user db=test user=test privs=ALL state=absent
|
||||
postgresql_user db=test user=test priv=ALL state=absent
|
||||
|
|
Loading…
Reference in a new issue