Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Rename PushNpgsqlDB to PushPgsqlDB, that makes a lot more sense.
  • Loading branch information
Jackson Harper committed Jun 28, 2010
1 parent 7e2969e commit 1f9d9d4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Expand Up @@ -16,7 +16,7 @@ namespace MCloud.Deploy
/// information.
/// The remote server must already have postgresql installed and running.
/// </summary>
public class PushNpgsqlDB : SSHDeployment
public class PushPgsqlDB : SSHDeployment
{
private string database;
private string dump_file;
Expand All @@ -28,7 +28,7 @@ public class PushNpgsqlDB : SSHDeployment
/// A <see cref="System.String"/>
/// The name of the database to pull from and push to.
/// </param>
public PushNpgsqlDB (string db_name)
public PushPgsqlDB (string db_name)
{
Database = db_name;
}
Expand Down
2 changes: 1 addition & 1 deletion MCloud/Makefile.am
Expand Up @@ -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 =

Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started.mkdn
Expand Up @@ -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.
Expand Down

0 comments on commit 1f9d9d4

Please sign in to comment.