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
1 day 3 hours ago
1 day 10 hours ago
1 day 14 hours ago
1 day 15 hours ago
2 days 18 min ago
2 days 9 hours ago
2 days 10 hours ago
2 days 14 hours ago
2 days 18 hours ago
2 days 18 hours ago