Merge pull request #1 from Mirantis/KEERO-316

KEERO-316 - Fix all occurrences of old names (keero, glazier)
This commit is contained in:
Serg Melikyan 2013-04-25 00:46:37 -07:00
commit b1e1b2dfae
12 changed files with 16 additions and 18 deletions

View File

@ -7,7 +7,7 @@
<ProjectGuid>{501BE151-4B8C-4355-88DC-3AEF1921B2D7}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ConsoleApplication1</RootNamespace>
<RootNamespace>Mirantis.Murano</RootNamespace>
<AssemblyName>ExecutionPlanGenerator</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>

View File

@ -6,7 +6,7 @@ using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
namespace ConsoleApplication1
namespace Mirantis.Murano
{
class Command
{

View File

@ -19,9 +19,9 @@
</nlog>
<appSettings>
<add key="rabbitmq.host" value="localhost"/>
<add key="rabbitmq.user" value="keero"/>
<add key="rabbitmq.password" value="keero"/>
<add key="rabbitmq.vhost" value="keero"/>
<add key="rabbitmq.user" value="murano"/>
<add key="rabbitmq.password" value="murano"/>
<add key="rabbitmq.vhost" value="murano"/>
<add key="rabbitmq.resultExchange" value=""/>
<add key="rabbitmq.resultRoutingKey" value="-execution-results"/>
<add key="rabbitmq.durableMessages" value="true"/>

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mirantis.Keero.WindowsAgent
namespace Mirantis.Murano.WindowsAgent
{
class ExecutionPlan
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Mirantis.Keero.WindowsAgent
namespace Mirantis.Murano.WindowsAgent
{
class MqMessage
{

View File

@ -8,7 +8,7 @@ using System.Text;
using NLog;
using Newtonsoft.Json;
namespace Mirantis.Keero.WindowsAgent
namespace Mirantis.Murano.WindowsAgent
{
class PlanExecutor
{

View File

@ -9,9 +9,9 @@ using System.Text;
using System.Threading;
using NLog;
namespace Mirantis.Keero.WindowsAgent
namespace Mirantis.Murano.WindowsAgent
{
[DisplayName("Keero Agent")]
[DisplayName("Murano Agent")]
sealed public class Program : WindowsService
{
private static readonly Logger Log = LogManager.GetCurrentClassLogger();

View File

@ -8,7 +8,7 @@ using System.Threading.Tasks;
using NLog;
using RabbitMQ.Client;
namespace Mirantis.Keero.WindowsAgent
namespace Mirantis.Murano.WindowsAgent
{
class RabbitMqClient : IDisposable
{

View File

@ -4,7 +4,7 @@ using System.Reflection;
using System.ServiceProcess;
using NLog;
namespace Mirantis.Keero.WindowsAgent
namespace Mirantis.Murano.WindowsAgent
{
public class ServiceManager
{

View File

@ -7,7 +7,7 @@
<ProjectGuid>{F7E2A8D5-6D24-4651-A4BC-1024D59F4903}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Mirantis.Keero.WindowsAgent</RootNamespace>
<RootNamespace>Mirantis.Murano.WindowsAgent</RootNamespace>
<AssemblyName>WindowsAgent</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
@ -62,9 +62,7 @@
<Compile Include="ExecutionPlan.cs" />
<Compile Include="MqMessage.cs" />
<Compile Include="PlanExecutor.cs" />
<Compile Include="Program.cs">
<SubType>Component</SubType>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RabbitMqClient.cs" />
<Compile Include="ServiceManager.cs" />

View File

@ -6,7 +6,7 @@ using System.Reflection;
using System.ServiceProcess;
using NLog;
namespace Mirantis.Keero.WindowsAgent
namespace Mirantis.Murano.WindowsAgent
{
public abstract class WindowsService : ServiceBase
{

View File

@ -4,7 +4,7 @@ using System.Linq;
using System.Reflection;
using System.ServiceProcess;
namespace Mirantis.Keero.WindowsAgent
namespace Mirantis.Murano.WindowsAgent
{
[RunInstaller(true)]
public class WindowsServiceInstaller : Installer