mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
Merge pull request #12727 from grue/patch-2
Documentation update for salt.states.postgres_extension
This commit is contained in:
commit
14be1932e2
@ -3,7 +3,7 @@
|
||||
Management of PostgreSQL extensions (eg: postgis)
|
||||
=================================================
|
||||
|
||||
The postgres_users module is used to create and manage Postgres extensions.
|
||||
The postgres_extensions module is used to create and manage Postgres extensions.
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
@ -39,7 +39,7 @@ def present(name,
|
||||
db_port=None,
|
||||
db_user=None):
|
||||
'''
|
||||
Ensure that the named user is present with the specified privileges
|
||||
Ensure that the named extension is present with the specified privileges
|
||||
|
||||
name
|
||||
The name of the extension to manage
|
||||
@ -86,7 +86,7 @@ def present(name,
|
||||
'port': db_port,
|
||||
'password': db_password,
|
||||
}
|
||||
# check if user exists
|
||||
# check if extension exists
|
||||
mode = 'create'
|
||||
mtdata = __salt__['postgres.create_metadata'](
|
||||
name,
|
||||
@ -94,7 +94,7 @@ def present(name,
|
||||
ext_version=ext_version,
|
||||
**db_args)
|
||||
|
||||
# The user is not present, make it!
|
||||
# The extension is not present, install it!
|
||||
toinstall = postgres._EXTENSION_NOT_INSTALLED in mtdata
|
||||
if toinstall:
|
||||
mode = 'install'
|
||||
@ -143,10 +143,10 @@ def absent(name,
|
||||
db_port=None,
|
||||
db_user=None):
|
||||
'''
|
||||
Ensure that the named user is absent
|
||||
Ensure that the named extension is absent
|
||||
|
||||
name
|
||||
Extension username of the extension to remove
|
||||
Extension name of the extension to remove
|
||||
|
||||
cascade
|
||||
Drop on cascade
|
||||
@ -187,7 +187,7 @@ def absent(name,
|
||||
'port': db_port,
|
||||
'password': db_password,
|
||||
}
|
||||
# check if user exists and remove it
|
||||
# check if extension exists and remove it
|
||||
exists = __salt__['postgres.is_installed_extension'](name, **db_args)
|
||||
if exists:
|
||||
if __opts__['test']:
|
||||
|
Loading…
Reference in New Issue
Block a user