From 888f39d8fe2e56a17c98440fdd33a68667b62f64 Mon Sep 17 00:00:00 2001 From: Michael Scherer Date: Sat, 17 Mar 2012 20:48:49 +0000 Subject: fix missing '' around the call for the program 'true', (not the boolean, hence the error 'private method `split' called for true:TrueClass' ) --- modules/postgresql/manifests/database_callback.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') 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, } } -- cgit v1.2.1