Remove the POSIX requirement

refs #7163
This commit is contained in:
Johannes Meyer 2014-11-07 14:39:34 +01:00
parent 9a5d01b3fd
commit eadc7d8415
1 changed files with 0 additions and 14 deletions

View File

@ -456,20 +456,6 @@ class WebSetup extends Wizard implements SetupWizard
)
);
$requirements->addMandatory(
t('PHP Module: POSIX'),
t(
'It is required to install the POSIX module for PHP in case you\'re on a POSIX compliant'
. ' system as it\'s essential for some parts of the web frontend and the Icinga CLI.'
),
Platform::isWindows() || Platform::extensionLoaded('posix'),
Platform::isWindows() ? t('Your\'re not on a POSIX compliant system.') : (
Platform::extensionLoaded('posix') ? t('The PHP module POSIX is available.') : (
t('The PHP module POSIX is missing.')
)
)
);
$requirements->addOptional(
t('PHP Module: PDO-MySQL'),
t('Is Icinga Web 2 supposed to access a MySQL database the PDO-MySQL module for PHP is required.'),