initial commit of file from CVS for smeserver-mediawiki on Sat Sep 7 20:40:03 AEST 2024

This commit is contained in:
Trevor Batley
2024-09-07 20:40:03 +10:00
parent 6206aa2519
commit 259c480052
23 changed files with 16844 additions and 2 deletions

View File

@@ -0,0 +1 @@
reserved

View File

@@ -0,0 +1 @@
mediawiki

View File

@@ -0,0 +1 @@
mediawikiuser

View File

@@ -0,0 +1 @@
off

View File

@@ -0,0 +1 @@
MediaWiki

View File

@@ -0,0 +1 @@
global

View File

@@ -0,0 +1 @@
service

View 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);
}
}