(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>
This commit is contained in:
parent
4940938efe
commit
ec13bc4553
1 changed files with 3 additions and 0 deletions
|
@ -124,6 +124,7 @@ class puppetdb::server (
|
|||
store_usage => $store_usage,
|
||||
temp_usage => $temp_usage,
|
||||
confdir => $confdir,
|
||||
notify => Service[$puppetdb_service],
|
||||
}
|
||||
|
||||
class { 'puppetdb::server::database_ini':
|
||||
|
@ -250,12 +251,14 @@ class puppetdb::server (
|
|||
Class['puppetdb::server::firewall'] ->
|
||||
Class['puppetdb::server::config_ini'] ->
|
||||
Class['puppetdb::server::database_ini'] ->
|
||||
Class['puppetdb::server::read_database_ini'] ->
|
||||
Class['puppetdb::server::jetty_ini'] ->
|
||||
Service[$puppetdb_service]
|
||||
} else {
|
||||
Package[$puppetdb_package] ->
|
||||
Class['puppetdb::server::config_ini'] ->
|
||||
Class['puppetdb::server::database_ini'] ->
|
||||
Class['puppetdb::server::read_database_ini'] ->
|
||||
Class['puppetdb::server::jetty_ini'] ->
|
||||
Service[$puppetdb_service]
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue