initial commit of file from CVS for smeserver-mediawiki on Sat Sep 7 20:40:03 AEST 2024
This commit is contained in:
1
root/etc/e-smith/db/accounts/defaults/mediawiki/type
Normal file
1
root/etc/e-smith/db/accounts/defaults/mediawiki/type
Normal file
@@ -0,0 +1 @@
|
||||
reserved
|
@@ -0,0 +1 @@
|
||||
mediawiki
|
@@ -0,0 +1 @@
|
||||
mediawikiuser
|
@@ -0,0 +1 @@
|
||||
off
|
@@ -0,0 +1 @@
|
||||
MediaWiki
|
@@ -0,0 +1 @@
|
||||
global
|
@@ -0,0 +1 @@
|
||||
service
|
37
root/etc/e-smith/db/configuration/migrate/98groupoffice
Normal file
37
root/etc/e-smith/db/configuration/migrate/98groupoffice
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
my $rec = $DB->get('mediawiki')
|
||||
|| $DB->new_record('mediawiki', {type => 'service'});
|
||||
|
||||
my $pw = $rec->prop('DbPassword');
|
||||
|
||||
return "" if $pw;
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user