From 1f9d9d45eb3dc0adc523215ab3dcf38d9323f128 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Sun, 27 Jun 2010 21:10:34 -0400 Subject: [PATCH] Rename PushNpgsqlDB to PushPgsqlDB, that makes a lot more sense. --- MCloud/MCloud.Deploy/{PushNpgsqlDB.cs => PushPgsqlDB.cs} | 4 ++-- MCloud/Makefile.am | 2 +- doc/getting-started.mkdn | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename MCloud/MCloud.Deploy/{PushNpgsqlDB.cs => PushPgsqlDB.cs} (96%) diff --git a/MCloud/MCloud.Deploy/PushNpgsqlDB.cs b/MCloud/MCloud.Deploy/PushPgsqlDB.cs similarity index 96% rename from MCloud/MCloud.Deploy/PushNpgsqlDB.cs rename to MCloud/MCloud.Deploy/PushPgsqlDB.cs index 5e713ef..1666747 100644 --- a/MCloud/MCloud.Deploy/PushNpgsqlDB.cs +++ b/MCloud/MCloud.Deploy/PushPgsqlDB.cs @@ -16,7 +16,7 @@ namespace MCloud.Deploy /// information. /// The remote server must already have postgresql installed and running. /// - public class PushNpgsqlDB : SSHDeployment + public class PushPgsqlDB : SSHDeployment { private string database; private string dump_file; @@ -28,7 +28,7 @@ public class PushNpgsqlDB : SSHDeployment /// A /// The name of the database to pull from and push to. /// - public PushNpgsqlDB (string db_name) + public PushPgsqlDB (string db_name) { Database = db_name; } diff --git a/MCloud/Makefile.am b/MCloud/Makefile.am index 2164aa3..b67c7de 100644 --- a/MCloud/Makefile.am +++ b/MCloud/Makefile.am @@ -96,7 +96,7 @@ FILES = \ MCloud.Deploy/RunCommand.cs \ MCloud.Deploy/RunScript.cs \ MCloud.Deploy/CreateUser.cs \ - MCloud.Deploy/PushNpgsqlDB.cs + MCloud.Deploy/PushPgsqlDB.cs DATA_FILES = diff --git a/doc/getting-started.mkdn b/doc/getting-started.mkdn index 3bedd58..54feb45 100644 --- a/doc/getting-started.mkdn +++ b/doc/getting-started.mkdn @@ -135,7 +135,7 @@ The following deployment steps are available: * **CreateUser**: Create a new user on the node * **MultiStepDeployment**: Used to run a series of deployments. - * **PushNpgsqlDB**: Push the specified postgresql database and all of + * **PushPgsqlDB**: Push the specified postgresql database and all of * **its data to the server. * **PutFile**: Put a single file on the node. * **PutFiles**: Put a list of files on the node.