|
61 | 61 | notify => $notify_postgresql_service,
|
62 | 62 | }
|
63 | 63 |
|
64 |
| - postgresql_conf { 'autovacuum_vacuum_scale_factor' : |
| 64 | + pe_postgresql_conf { 'autovacuum_vacuum_scale_factor' : |
65 | 65 | value => sprintf('%#.2f', $autovacuum_vacuum_scale_factor),
|
66 | 66 | }
|
67 | 67 |
|
68 |
| - postgresql_conf { 'autovacuum_analyze_scale_factor' : |
| 68 | + pe_postgresql_conf { 'autovacuum_analyze_scale_factor' : |
69 | 69 | value => sprintf('%#.2f', $autovacuum_analyze_scale_factor),
|
70 | 70 | }
|
71 | 71 |
|
72 |
| - postgresql_conf { 'autovacuum_max_workers' : |
| 72 | + pe_postgresql_conf { 'autovacuum_max_workers' : |
73 | 73 | value => String($autovacuum_max_workers),
|
74 | 74 | }
|
75 | 75 |
|
76 |
| - postgresql_conf { 'autovacuum_work_mem' : |
| 76 | + pe_postgresql_conf { 'autovacuum_work_mem' : |
77 | 77 | value => String($autovacuum_work_mem),
|
78 | 78 | }
|
79 | 79 |
|
80 |
| - postgresql_conf { 'log_autovacuum_min_duration' : |
| 80 | + pe_postgresql_conf { 'log_autovacuum_min_duration' : |
81 | 81 | value => String($log_autovacuum_min_duration),
|
82 | 82 | }
|
83 | 83 |
|
84 |
| - postgresql_conf { 'log_temp_files' : |
| 84 | + pe_postgresql_conf { 'log_temp_files' : |
85 | 85 | value => String($log_temp_files),
|
86 | 86 | }
|
87 | 87 |
|
88 |
| - postgresql_conf { 'maintenance_work_mem' : |
| 88 | + pe_postgresql_conf { 'maintenance_work_mem' : |
89 | 89 | value => String($maintenance_work_mem),
|
90 | 90 | }
|
91 | 91 |
|
92 |
| - postgresql_conf { 'work_mem' : |
| 92 | + pe_postgresql_conf { 'work_mem' : |
93 | 93 | value => String($work_mem),
|
94 | 94 | }
|
95 | 95 |
|
96 |
| - postgresql_conf { 'max_connections' : |
| 96 | + pe_postgresql_conf { 'max_connections' : |
97 | 97 | value => String($max_connections),
|
98 | 98 | }
|
99 | 99 |
|
100 |
| - postgresql_conf { 'checkpoint_completion_target' : |
| 100 | + pe_postgresql_conf { 'checkpoint_completion_target' : |
101 | 101 | value => sprintf('%#.2f', $checkpoint_completion_target),
|
102 | 102 | }
|
103 | 103 |
|
|
106 | 106 | default => 'absent',
|
107 | 107 | }
|
108 | 108 |
|
109 |
| - postgresql_conf { 'checkpoint_segments' : |
| 109 | + pe_postgresql_conf { 'checkpoint_segments' : |
110 | 110 | ensure => $checkpoint_segments_ensure,
|
111 | 111 | value => String($checkpoint_segments),
|
112 | 112 | }
|
113 | 113 |
|
114 | 114 | if !empty($arbitrary_postgresql_conf_settings) {
|
115 | 115 | $arbitrary_postgresql_conf_settings.each | $key, $value | {
|
116 |
| - postgresql_conf { $key : |
| 116 | + pe_postgresql_conf { $key : |
117 | 117 | value => String($value),
|
118 | 118 | }
|
119 | 119 | }
|
|
0 commit comments