aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql
diff options
context:
space:
mode:
authorMichael Scherer <misc@mageia.org>2011-06-17 10:59:44 +0000
committerMichael Scherer <misc@mageia.org>2011-06-17 10:59:44 +0000
commit78860a4d9d8fcdcc3d1bb1cd4a404e3a798eb95d (patch)
tree60ab512dd2153c94f0143b526136dfe980bd3aa7 /modules/postgresql
parentb1ac80c77b10cdc4b94537d248c0345fb9b17cc7 (diff)
downloadpuppet-78860a4d9d8fcdcc3d1bb1cd4a404e3a798eb95d.tar
puppet-78860a4d9d8fcdcc3d1bb1cd4a404e3a798eb95d.tar.gz
puppet-78860a4d9d8fcdcc3d1bb1cd4a404e3a798eb95d.tar.bz2
puppet-78860a4d9d8fcdcc3d1bb1cd4a404e3a798eb95d.tar.xz
puppet-78860a4d9d8fcdcc3d1bb1cd4a404e3a798eb95d.zip
fix syntax of exec ( one more time )
Diffstat (limited to 'modules/postgresql')
-rw-r--r--modules/postgresql/manifests/init.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/postgresql/manifests/init.pp b/modules/postgresql/manifests/init.pp
index 5729487c..54971918 100644
--- a/modules/postgresql/manifests/init.pp
+++ b/modules/postgresql/manifests/init.pp
@@ -152,7 +152,7 @@ class postgresql {
define database_callback($callback_notify = '') {
# dummy declaration, so we can trigger the notify
exec { "callback $name":
- cmd => "true",
+ command => "true",
notify => $callback_notify,
}
}