aboutsummaryrefslogtreecommitdiffstats
path: root/modules/postgresql/manifests/database_callback.pp
blob: 0ab1771ff6bea6c9b45613fe092576e15b1df2ee (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,
        }
    }
}