From 162b35566cd99334666af207780d4e4b6c71ebef Mon Sep 17 00:00:00 2001 From: Marius Hein Date: Fri, 7 Nov 2014 09:09:02 +0100 Subject: [PATCH] Setup/Webserver: Change namespace refs #6120 --- application/clicommands/SetupCommand.php | 2 +- library/Icinga/{Config => Web/Setup}/Webserver/Apache2.php | 2 +- library/Icinga/{Config => Web/Setup}/Webserver/Apache24.php | 2 +- library/Icinga/{Config => Web/Setup}/Webserver/Nginx.php | 2 +- library/Icinga/{Config => Web/Setup}/Webserver/Webserver.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename library/Icinga/{Config => Web/Setup}/Webserver/Apache2.php (93%) rename library/Icinga/{Config => Web/Setup}/Webserver/Apache24.php (93%) rename library/Icinga/{Config => Web/Setup}/Webserver/Nginx.php (95%) rename library/Icinga/{Config => Web/Setup}/Webserver/Webserver.php (98%) diff --git a/application/clicommands/SetupCommand.php b/application/clicommands/SetupCommand.php index a8b9ea4f6..caa07ae1d 100644 --- a/application/clicommands/SetupCommand.php +++ b/application/clicommands/SetupCommand.php @@ -6,7 +6,7 @@ namespace Icinga\Clicommands; use Icinga\Application\Logger; use Icinga\Cli\Command; -use Icinga\Config\Webserver\Webserver; +use Icinga\Web\Setup\Webserver\Webserver; use Icinga\Exception\ProgrammingError; /** diff --git a/library/Icinga/Config/Webserver/Apache2.php b/library/Icinga/Web/Setup/Webserver/Apache2.php similarity index 93% rename from library/Icinga/Config/Webserver/Apache2.php rename to library/Icinga/Web/Setup/Webserver/Apache2.php index 077bf8bc3..49db80e9b 100644 --- a/library/Icinga/Config/Webserver/Apache2.php +++ b/library/Icinga/Web/Setup/Webserver/Apache2.php @@ -2,7 +2,7 @@ // {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}} -namespace Icinga\Config\Webserver; +namespace Icinga\Web\Setup\Webserver; /** * Generate apache 2.x (< 2.4) configuration diff --git a/library/Icinga/Config/Webserver/Apache24.php b/library/Icinga/Web/Setup/Webserver/Apache24.php similarity index 93% rename from library/Icinga/Config/Webserver/Apache24.php rename to library/Icinga/Web/Setup/Webserver/Apache24.php index ad758abcd..29e927770 100644 --- a/library/Icinga/Config/Webserver/Apache24.php +++ b/library/Icinga/Web/Setup/Webserver/Apache24.php @@ -2,7 +2,7 @@ // {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}} -namespace Icinga\Config\Webserver; +namespace Icinga\Web\Setup\Webserver; /** * Generate apache2.4 configuration diff --git a/library/Icinga/Config/Webserver/Nginx.php b/library/Icinga/Web/Setup/Webserver/Nginx.php similarity index 95% rename from library/Icinga/Config/Webserver/Nginx.php rename to library/Icinga/Web/Setup/Webserver/Nginx.php index bd670083c..90996b2a0 100644 --- a/library/Icinga/Config/Webserver/Nginx.php +++ b/library/Icinga/Web/Setup/Webserver/Nginx.php @@ -2,7 +2,7 @@ // {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}} -namespace Icinga\Config\Webserver; +namespace Icinga\Web\Setup\Webserver; /** * Create nginx webserver configuration diff --git a/library/Icinga/Config/Webserver/Webserver.php b/library/Icinga/Web/Setup/Webserver/Webserver.php similarity index 98% rename from library/Icinga/Config/Webserver/Webserver.php rename to library/Icinga/Web/Setup/Webserver/Webserver.php index 349af82de..b246cffd0 100644 --- a/library/Icinga/Config/Webserver/Webserver.php +++ b/library/Icinga/Web/Setup/Webserver/Webserver.php @@ -2,7 +2,7 @@ // {{{ICINGA_LICENSE_HEADER}}} // {{{ICINGA_LICENSE_HEADER}}} -namespace Icinga\Config\Webserver; +namespace Icinga\Web\Setup\Webserver; use Icinga\Application\ApplicationBootstrap; use Icinga\Exception\ProgrammingError;