Skip to content

postgresql instances fix parameter indention server::instance::passwd (8/x) #1394

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions manifests/server/instance/passwd.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
# @param postgres_password Sets the password for the postgres user to your specified value. By default, this setting uses the superuser account in the Postgres database, with a user called postgres and no password.
# lint:endignore:140chars
define postgresql::server::instance::passwd (
$user = $postgresql::server::user,
$group = $postgresql::server::group,
$psql_path = $postgresql::server::psql_path,
$port = $postgresql::server::port,
$database = $postgresql::server::default_database,
$module_workdir = $postgresql::server::module_workdir,
$user = $postgresql::server::user,
$group = $postgresql::server::group,
$psql_path = $postgresql::server::psql_path,
$port = $postgresql::server::port,
$database = $postgresql::server::default_database,
$module_workdir = $postgresql::server::module_workdir,
$postgres_password = $postgresql::server::postgres_password,

) {
Expand Down