diff options
author | Michael Scherer <misc@mageia.org> | 2012-03-17 18:10:42 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2012-03-17 18:10:42 +0000 |
commit | dbc1e902bd1923e4587aa092e37f8c9c87c05aa4 (patch) | |
tree | 033dcf6d8ee34b6ad23dcc49287561d1daf2d3e5 /modules/postgresql | |
parent | bf3f59b7ae0e36977a6a75061b01181e76b1417a (diff) | |
download | puppet-dbc1e902bd1923e4587aa092e37f8c9c87c05aa4.tar puppet-dbc1e902bd1923e4587aa092e37f8c9c87c05aa4.tar.gz puppet-dbc1e902bd1923e4587aa092e37f8c9c87c05aa4.tar.bz2 puppet-dbc1e902bd1923e4587aa092e37f8c9c87c05aa4.tar.xz puppet-dbc1e902bd1923e4587aa092e37f8c9c87c05aa4.zip |
fix type of the object
Diffstat (limited to 'modules/postgresql')
-rw-r--r-- | modules/postgresql/manifests/remote_database.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/postgresql/manifests/remote_database.pp b/modules/postgresql/manifests/remote_database.pp index 57d35a9b..19beb712 100644 --- a/modules/postgresql/manifests/remote_database.pp +++ b/modules/postgresql/manifests/remote_database.pp @@ -1,7 +1,7 @@ -class postgresql::remote_database($description = '', - $user = 'postgresql', - $callback_notify = '', - $tag = 'default') { +define postgresql::remote_database($description = '', + $user = 'postgresql', + $callback_notify = '', + $tag = 'default') { @@postgresql::database { $name: description => $description, user => $user, |