smeserver-mod_log_sql/root/etc/e-smith/db/configuration/migrate/ApacheLogSqlPassword

30 lines
940 B
Plaintext

{
my $rec = $DB->get('httpd-e-smith')
|| $DB->new_record('httpd-e-smith', {type => 'service'});
my $pw = $rec->prop('DbPassword');
if (not $pw){
use MIME::Base64 qw(encode_base64);
$pw = "not set due to error";
if ( open( RANDOM, "/dev/urandom" ) ){
my $buf;
# 57 bytes is a full line of Base64 coding, and contains
# 456 bits of randomness - given a perfectly random /dev/random
if ( read( RANDOM, $buf, 57 ) != 57 ){
warn("Short read from /dev/random: $!");
}
else{
$pw = encode_base64($buf);
chomp $pw;
# This module doesn't like / in the password
$pw =~ s|/||g;
}
close RANDOM;
}
else{
warn "Could not open /dev/urandom: $!";
}
$rec->set_prop('DbPassword', $pw);
}
}