aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql/manifests/database_callback.pp
blob: c861eba5affd50a84e684ad7a88664127381550d (plain)
1
2
3
4
5
6
7
8
9
define postgresql::database_callback($callback_notify = '') {
    # dummy declaration, so we can trigger the notify
    if $callback_notify {
        exec { "callback $name":
            command => true,
            notify  => $callback_notify,
        }
    }
}