File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 1212# @param database_name
1313# Sets the name of the database. Defaults to `puppetdb`.
1414#
15+ # @param database_locale
16+ # Sets the locale of the database. Defaults to `C.UTF-8`.
17+ #
1518# @param database_username
1619# Creates a user for access the database. Defaults to `puppetdb`.
1720#
7477 $listen_addresses = $puppetdb::params::database_host,
7578 $puppetdb_server = $puppetdb::params::puppetdb_server,
7679 $database_name = $puppetdb::params::database_name,
80+ $database_locale = $puppetdb::params::database_locale,
7781 $database_username = $puppetdb::params::database_username,
7882 Variant[String[1], Sensitive[String[1]]] $database_password = $puppetdb::params::database_password,
7983 $database_port = $puppetdb::params::database_port,
150154 user => $database_username ,
151155 password => $database_password ,
152156 encoding => ' UTF8' ,
153- locale => ' en_US.UTF-8 ' ,
157+ locale => $database_locale ,
154158 grant => ' all' ,
155159 port => $port ,
156160 }
Original file line number Diff line number Diff line change 3535 $database_host = ' localhost'
3636 $database_port = ' 5432'
3737 $database_name = ' puppetdb'
38+ $database_locale = ' C.UTF-8'
3839 $database_username = ' puppetdb'
3940 $database_password = ' puppetdb'
4041 $manage_db_password = true
You can’t perform that action at this time.
0 commit comments