Skip to content

Commit ec13bc4

Browse files
committed
(PDB-1467) Ordering problem with read_database_ini
This fixes the ordering for the read_database_ini class, and fixes a small notification problem with config_ini as well. Signed-off-by: Ken Barber <ken@bob.sh>
1 parent 4940938 commit ec13bc4

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

manifests/server.pp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@
124124
store_usage => $store_usage,
125125
temp_usage => $temp_usage,
126126
confdir => $confdir,
127+
notify => Service[$puppetdb_service],
127128
}
128129

129130
class { 'puppetdb::server::database_ini':
@@ -250,12 +251,14 @@
250251
Class['puppetdb::server::firewall'] ->
251252
Class['puppetdb::server::config_ini'] ->
252253
Class['puppetdb::server::database_ini'] ->
254+
Class['puppetdb::server::read_database_ini'] ->
253255
Class['puppetdb::server::jetty_ini'] ->
254256
Service[$puppetdb_service]
255257
} else {
256258
Package[$puppetdb_package] ->
257259
Class['puppetdb::server::config_ini'] ->
258260
Class['puppetdb::server::database_ini'] ->
261+
Class['puppetdb::server::read_database_ini'] ->
259262
Class['puppetdb::server::jetty_ini'] ->
260263
Service[$puppetdb_service]
261264
}

0 commit comments

Comments
 (0)