aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql/manifests/database_callback.pp
blob: 8d4b217c9a582d2100d0ced39c5b3390576c1714 (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 => '/bin/true',
            notify  => $callback_notify,
        }
    }
}