From 7393e9ec57e2a32e5df295e48811b93b430d3d40 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 31 Mar 2009 07:25:02 -0400
Subject: [PATCH] Fixed: FS#664 - Ubuntu 8.10: status=bounced (user unknown. Command output: Invalid user specified. )
---
install/lib/install.lib.php | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/install/lib/install.lib.php b/install/lib/install.lib.php
index a130a51..21ff781 100644
--- a/install/lib/install.lib.php
+++ b/install/lib/install.lib.php
@@ -88,6 +88,13 @@
$distbaseid = 'opensuse';
swriteln("Operating System: openSUSE 11.0 or compatible\n");
}
+ if(stristr(file_get_contents('/etc/SuSE-release'),'11.1')) {
+ $distname = 'openSUSE';
+ $distver = '11.1';
+ $distid = 'opensuse110';
+ $distbaseid = 'opensuse';
+ swriteln("Operating System: openSUSE 11.1 or compatible\n");
+ }
}
--
Gitblit v1.9.1