Add missing files

tags/smeserver-dl-0.2.1-1
Daniel Berteaud 11 years ago
parent 097a592dd6
commit 68c0e65c58
  1. 1
      root/etc/e-smith/db/configuration/defaults/dl/DbName
  2. 1
      root/etc/e-smith/db/configuration/defaults/dl/DbUser
  3. 27
      root/etc/e-smith/db/configuration/migrate/dl-database
  4. 1
      root/etc/e-smith/templates.metadata/etc/e-smith/sql/init/dl

@ -0,0 +1,27 @@
{
my $rec = $DB->get('dl')
|| $DB->new_record('dl', {type => 'webapp'});
my $pw = $rec->prop('DbPassword');
if (not $pw or length($pw) < 57){
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;
}
close RANDOM;
}
else{
warn "Could not open /dev/urandom: $!";
}
$rec->set_prop('DbPassword', $pw);
}
}
Loading…
Cancel
Save