I'm setting up my Bacula configuration in Puppet. One thing I want to do is ensure that each password field is different. My current thought is to hash the hostname with a secret value that would ensure each file daemon has a unique password and that password can be written to both the director configuration and the file server. I definitely don't want to use one universal password as that would permit anybody who might compromise one machine to get access to any machine through Bacula.
Is there another way to do this other than using a hash function to generate the passwords?
Clarification:
This is NOT about user accounts for services. This is about the authentication tokens (to use another term) in the client / server files. Example snippet:
Director { # define myself
Name = <%= hostname $>-dir
QueryFile = "/etc/bacula/scripts/query.sql"
WorkingDirectory = "/var/lib/bacula"
PidDirectory = "/var/run/bacula"
Maximum Concurrent Jobs = 3
Password = "<%= somePasswordFunction =>" # Console password
Messages = Daemon
}
I'm quite pleased with my solution to this. It's a shell script called by generate() function from puppet manifest. Password for each host is generated and stored in simple file as needed.
Install pwgen or another password generation tool, modify workdir variable for your system settings, check password lengths. In template file call it:
Puppet variable bacula_dirname should be based on hostname or set from extlookup() e.g.:
Import
$secret
from another file (perhaps that one puppet class that you don't keep in version control) and there you have it. Magic password generation.Passwords can be changed globally by changing
$secret
or individually in each declaration by using something other than$fqdn
.An alternative is to set something up via extlookup() that you can then have per-machine uniqueness that doesn't depend on a common value.
In our case, we've done stuff like this with similar tools that needed more uniqueness than what a hashed value with a common secret gave us.
In site.pp
Then, your ext data would look like:
Inside foo.csv, you'd put something like:
Then in your bacula module, you'd do
which you could then reference in your template.
When the catalog is evaluated, the hostname "foo" would be found first in the ext precedence and the value of bacula_password would be pulled from there.