some os deprecations

- SLE10 will be replaced by SLE11
- opensuse11 will be replaced by opensuse13 once i managed to clean up the configs from upstream
- ubuntu lucid will be replaced by ubuntu trusty once i get to it
This commit is contained in:
Robert Förster (Dessa)
2014-05-23 12:08:23 +02:00
parent 9a1b0e6ea8
commit a130013c5d
4 changed files with 5 additions and 5 deletions

View File

@@ -36,7 +36,7 @@ if ($vmail_group === false) {
return array(
'ubuntu_lucid' => array(
'label' => 'Ubuntu 10.04 (Lucid)',
'label' => 'Ubuntu 10.04 (Lucid) [deprecated]',
'services' => array(
'http' => array(
'label' => $lng['admin']['configfiles']['http'],

View File

@@ -36,7 +36,7 @@ if ($vmail_group === false) {
return array(
'sle_10' => array(
'label' => 'SUSE Linux Enterprise 10',
'label' => 'SUSE Linux Enterprise 10 (deprecated)',
'services' => array(
'http' => array(
'label' => $lng['admin']['configfiles']['http'],

View File

@@ -35,8 +35,8 @@ if ($vmail_group === false) {
}
return array(
'opensuse_11_x' => array(
'label' => 'openSUSE 11.x',
'sle_11' => array(
'label' => 'SUSE Linux Enterprise 11',
'services' => array(
'http' => array(
'label' => $lng['admin']['configfiles']['http'],

View File

@@ -45,7 +45,7 @@ $configfiles = array_merge(
include $cfgPath . 'precise.inc.php',
include $cfgPath . 'lucid.inc.php',
include $cfgPath . 'gentoo.inc.php',
include $cfgPath . 'suse11.inc.php',
include $cfgPath . 'sle11.inc.php',
include $cfgPath . 'sle10.inc.php',
include $cfgPath . 'freebsd.inc.php'
);