You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
postgresql::validate_db_connection { 'validate my postgres connection':
292
-
database_host => 'my.postgres.host',
293
-
database_username => 'mydbuser',
294
-
database_password => 'mydbpassword',
295
-
database_name => 'mydbname',
292
+
database_host => 'my.postgres.host',
293
+
database_username => 'mydbuser',
294
+
database_password => 'mydbpassword',
295
+
database_name => 'mydbname',
296
296
}->
297
297
exec { 'rake db:migrate':
298
298
cwd => '/opt/myrubyapp',
@@ -496,12 +496,6 @@ Overrides the default PostgreSQL log directory.
496
496
497
497
Default value: initdb's default path.
498
498
499
-
##### `log_line_prefix`
500
-
501
-
Set a prefix for the server logs.
502
-
503
-
Default value: `undef`.
504
-
505
499
##### `manage_package_repo`
506
500
507
501
Sets up official PostgreSQL repositories on your host if set to `true`.
@@ -786,13 +780,6 @@ Specifies the IP mask from which remote connections should be denied for the pos
786
780
787
781
Default value: '0.0.0.0/0', which denies any remote connection.
788
782
789
-
##### `listen_addresses`
790
-
791
-
Specifies the addresses the server accepts connections to. Valid values:
792
-
* 'localhost': Accept connections from local host only.
793
-
* '*': Accept connections from any remote machine.
794
-
* Specified comma-separated list of hostnames or IP addresses.
795
-
796
783
##### `locale`
797
784
798
785
Sets the default database locale for all databases created with this module. On certain operating systems this is used during the `template1` initialization as well, so it becomes a default outside of the module.
@@ -801,12 +788,6 @@ Default value: `undef`, which is effectively 'C'.
801
788
802
789
**On Debian, you must ensure that the 'locales-all' package is installed for full functionality of PostgreSQL.**
803
790
804
-
##### `log_line_prefix`
805
-
806
-
Set a prefix for the server logs.
807
-
808
-
Default value: '$log_line_prefix' variable set in `postgresql::server` or `postgresql::globals`.
809
-
810
791
##### `manage_pg_hba_conf`
811
792
812
793
Whether to manage the `pg_hba.conf`.
@@ -1449,8 +1430,8 @@ Sets the hash to use during password creation. If the password is not already pr
1449
1430
If set to true, updates the password on changes. Set this to false to not modify the role's password after creation.
Generates a PostgreSQL encrypted password, use `postgresql_password`. Call it from the command line and then copy and paste the encrypted password into your manifest:
0 commit comments