aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/postgresql/manifests/init.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/postgresql/manifests/init.pp b/modules/postgresql/manifests/init.pp
index be9c2c5a..05c15468 100644
--- a/modules/postgresql/manifests/init.pp
+++ b/modules/postgresql/manifests/init.pp
@@ -5,7 +5,7 @@ class postgresql {
service { postgresql:
ensure => running,
- subscribe => Package[postgresql9.0-server"],
+ subscribe => Package["postgresql9.0-server"],
restart => "/etc/rc.d/init.d/postgresql reload"
}
@@ -24,7 +24,7 @@ class postgresql {
mode => 600,
content => template("postgresql/postgresql.conf"),
require => Package["postgresql9.0-server"],
- notify => [Service['postgresql']]
+ notify => [Service["postgresql"]]
}
file { '/var/lib/pgsql/data/pg_hba.conf':
@@ -34,6 +34,6 @@ class postgresql {
mode => 600,
content => template("postgresql/pg_hba.conf"),
require => Package["postgresql9.0-server"],
- notify => [Service['postgresql']]
+ notify => [Service["postgresql"]]
}
}