diff options
author | Michael Scherer <misc@mageia.org> | 2011-06-17 10:59:44 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-06-17 10:59:44 +0000 |
commit | 78860a4d9d8fcdcc3d1bb1cd4a404e3a798eb95d (patch) | |
tree | 60ab512dd2153c94f0143b526136dfe980bd3aa7 /modules/postgresql/manifests | |
parent | b1ac80c77b10cdc4b94537d248c0345fb9b17cc7 (diff) | |
download | puppet-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/manifests')
-rw-r--r-- | modules/postgresql/manifests/init.pp | 2 |
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, } } |