mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
Merge pull request #42984 from lukasz-baranowski/fix-postgres-schema-bug-42980
Fix param name in postgres_schema.py state file
This commit is contained in:
commit
9a1a2ada5b
@ -68,7 +68,7 @@ def present(dbname, name,
|
||||
'db_password': db_password,
|
||||
'db_host': db_host,
|
||||
'db_port': db_port,
|
||||
'runas': user
|
||||
'user': user
|
||||
}
|
||||
|
||||
# check if schema exists
|
||||
@ -144,7 +144,7 @@ def absent(dbname, name, user=None,
|
||||
'db_password': db_password,
|
||||
'db_host': db_host,
|
||||
'db_port': db_port,
|
||||
'runas': user
|
||||
'user': user
|
||||
}
|
||||
|
||||
# check if schema exists and remove it
|
||||
|
Loading…
Reference in New Issue
Block a user