diff --git a/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Ainitdb.html b/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Ainitdb.html index 5e7400a..f834f10 100644 --- a/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Ainitdb.html +++ b/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Ainitdb.html @@ -113,7 +113,9 @@ 15 16 17 -18 +18 +19 +20
# File 'manifests/server/initdb.pp', line 6
@@ -122,6 +124,8 @@ class postgresql_cd::server::initdb (
) inherits postgresql_cd::params {
if $fqdn == $pl_server_fqdn {
+ require postgresql_cd::main::install
+
exec { 'init_pgsql_db':
command => 'postgresql-setup --initdb',
creates => "${pl_data_dir}/PG_VERSION",
diff --git a/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Aservice.html b/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Aservice.html
index 3904522..f3045c2 100644
--- a/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Aservice.html
+++ b/doc/puppet_classes/postgresql_cd_3A_3Aserver_3A_3Aservice.html
@@ -125,7 +125,7 @@ class postgresql_cd::server::service (
) inherits postgresql_cd::params {
if $fqdn == $pl_server_fqdn {
require postgresql_cd::firewall::iptables
- require postgresql_cd::server::initdb
+ include postgresql_cd::server::initdb
service { $pl_service:
ensure => running,