{

my $rec = $DB->get('automysqlbackup') || $DB->new_record('automysqlbackup', { type => 'webapp' });
my $pw = $rec->prop('DbPassword');

if (not $pw){
    $pw = `/usr/bin/openssl rand -base64 60 | tr -c -d '[:graph:]'`;
    chomp($pw);
    $rec->set_prop('DbPassword', $pw);
}

}
