aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2012-03-17 20:48:49 +0000
committerMichael Scherer <misc@mageia.org>2012-03-17 20:48:49 +0000
commit888f39d8fe2e56a17c98440fdd33a68667b62f64 (patch)
tree006bca6aa9ef555025ea13c9332a5c72858093b9 /modules/postgresql
parent6d12878a95d913834433a1d1a22759931b3bf2a1 (diff)
downloadpuppet-888f39d8fe2e56a17c98440fdd33a68667b62f64.tar
puppet-888f39d8fe2e56a17c98440fdd33a68667b62f64.tar.gz
puppet-888f39d8fe2e56a17c98440fdd33a68667b62f64.tar.bz2
puppet-888f39d8fe2e56a17c98440fdd33a68667b62f64.tar.xz
puppet-888f39d8fe2e56a17c98440fdd33a68667b62f64.zip
fix missing '' around the call for the program 'true', (not the boolean,
hence the error 'private method `split' called for true:TrueClass' )
Diffstat (limited to 'modules/postgresql')
-rw-r--r--modules/postgresql/manifests/database_callback.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/postgresql/manifests/database_callback.pp b/modules/postgresql/manifests/database_callback.pp
index c861eba5..8d4b217c 100644
--- a/modules/postgresql/manifests/database_callback.pp
+++ b/modules/postgresql/manifests/database_callback.pp
@@ -2,7 +2,7 @@ define postgresql::database_callback($callback_notify = '') {
# dummy declaration, so we can trigger the notify
if $callback_notify {
exec { "callback $name":
- command => true,
+ command => '/bin/true',
notify => $callback_notify,
}
}