From a21c72553ef78accb8c18842066dd7c9271fdd39 Mon Sep 17 00:00:00 2001 From: tbrehm <t.brehm@ispconfig.org> Date: Thu, 05 Mar 2009 15:47:26 -0500 Subject: [PATCH] Added support for opensuse 11.1 --- 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