Displaying 1 result from an estimated 1 matches for "create_bacula_db".
2007 Oct 02
2
Requires from other modules / requires with aliases
...in other modules. At the
moment, I have the following (simplified):
/etc/puppet/modules/bacula/manifests/init.pp:
class bacula {
...
define configure ( $gui="true", $db_password ) {
...
postgresql::create_db { "bacula":
alias => create_bacula_db,
require => create_bacula_user,
owner => "bacula",
}
postgresql::authorise{"bacula":
alias => authorise_bacula_user,
host => "local",...