Cleanup database migrate fragment

tags/smeserver-phplist-0.2.1-1
Daniel Berteaud 11 years ago
parent 4053582f1a
commit 55ec511c46
  1. 16
      root/etc/e-smith/db/configuration/migrate/phplist-database

@ -2,32 +2,26 @@
my $rec = $DB->get('phplist') my $rec = $DB->get('phplist')
|| $DB->new_record('phplist', {type => 'webapp'}); || $DB->new_record('phplist', {type => 'webapp'});
my $pw = $rec->prop('DbPassword'); my $pw = $rec->prop('DbPassword');
if (not $pw or length($pw) < 57) if (not $pw or length($pw) < 57){
{
use MIME::Base64 qw(encode_base64); use MIME::Base64 qw(encode_base64);
$pw = "not set due to error"; $pw = "not set due to error";
if ( open( RANDOM, "/dev/urandom" ) ) if ( open( RANDOM, "/dev/urandom" ) ){
{
my $buf; my $buf;
# 57 bytes is a full line of Base64 coding, and contains # 57 bytes is a full line of Base64 coding, and contains
# 456 bits of randomness - given a perfectly random /dev/random # 456 bits of randomness - given a perfectly random /dev/random
if ( read( RANDOM, $buf, 57 ) != 57 ) if ( read( RANDOM, $buf, 57 ) != 57 ){
{
warn("Short read from /dev/random: $!"); warn("Short read from /dev/random: $!");
} }
else else{
{
$pw = encode_base64($buf); $pw = encode_base64($buf);
chomp $pw; chomp $pw;
} }
close RANDOM; close RANDOM;
} }
else else{
{
warn "Could not open /dev/urandom: $!"; warn "Could not open /dev/urandom: $!";
} }
$rec->set_prop('DbPassword', $pw); $rec->set_prop('DbPassword', $pw);
} }
} }

Loading…
Cancel
Save