I had a similar problem, or well - the exact same but on Debian Lenny.
So what I did to get it to work was edit "lib/install.lib.php" and went through the function "get_distname()", copied out the variables for my operating system and inserted them right before the return.
Code:
...
$distname = 'Debian';
$distver = 'Lenny/Sid';
$distid = 'debian40';
$distbaseid = 'debian';
swriteln("Operating System: Debian Lenny/Sid or compatible\n");
return array('name' => $distname, 'version' => $distver, 'id' => $distid, 'baseid' => $distbaseid);
This solved the problem. A possible fix is to update the if-control so that the script can parse my version aswell; 5.0.3.
Code:
if(trim(file_get_contents('/etc/debian_version')) == '5.0' || trim(file_get_contents('/etc/debian_version')) == 'lenny/sid') {
Into
Code:
if(trim(strstr(file_get_contents('/etc/debian_version')),'5.0') || trim(file_get_contents('/etc/debian_version')) == 'lenny/sid') {
Or something..
Best Regards,
Timh/Shiwebs.
Recent comments
7 hours 22 min ago
12 hours 27 min ago
16 hours 51 min ago
18 hours 40 min ago
1 day 8 hours ago
1 day 8 hours ago
1 day 13 hours ago
1 day 20 hours ago
1 day 21 hours ago
1 day 22 hours ago