{
    my $rec = $DB->get('mozilla-sync')
        || $DB->new_record('mozilla-sync', {type => 'service'});
    my $pw = $rec->prop('DbPassword');
    if (not $pw){
        $pw=`/usr/bin/openssl rand -base64 15 | tr -c -d '[:graph:]'`;
        $rec->set_prop('DbPassword', $pw);
    }
}
