mimas-postgresql 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/mimas/plugins/postgresql/commands/configure.rb +1 -1
- data/lib/mimas/plugins/postgresql/commands/console.rb +1 -1
- data/lib/mimas/plugins/postgresql/commands/create_db.rb +1 -1
- data/lib/mimas/plugins/postgresql/commands/create_role.rb +1 -1
- data/lib/mimas/plugins/postgresql/commands/setup.rb +1 -1
- data/lib/mimas/plugins/postgresql/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0e6e2f8c28dc828893e6ef47b9025ba4393661432d4bc434bad0bfee3063b89
|
|
4
|
+
data.tar.gz: 1af03746a9464f8fbb70deb6f0f2dbcf068219815f00b27c75ce4c6e38bd4ace
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ba94a529c959d9ad04f3c72919cb0177d9b7f7efbe0748fc312423648e58115ca0ac61d9f7ad8975ab9fea3091a80c9a541286ff31acf525b9e9229289d52d2
|
|
7
|
+
data.tar.gz: bf379dcc9d6dfe0878fee318e2c1ce2e0eb4aa244d7c434dd1342c3cf6ffd280f92102a3f3bd004623195d4659e7d9410d2070ed5fe18a2ad9e8bdf5e7fb3ba1
|
|
@@ -5,7 +5,7 @@ module Mimas
|
|
|
5
5
|
class Configure < Mimas::CLI::Commands::BaseCommand
|
|
6
6
|
desc "Install configuration files for PostgreSQL."
|
|
7
7
|
|
|
8
|
-
argument :server_name, required: true, desc: "The name of the server to
|
|
8
|
+
argument :server_name, required: true, desc: "The name of the server to configure PostgreSQL on"
|
|
9
9
|
|
|
10
10
|
option :user, default: "admin", aliases: ["-u"], desc: "A user with sudo access"
|
|
11
11
|
|
|
@@ -5,7 +5,7 @@ module Mimas
|
|
|
5
5
|
class Console < Mimas::CLI::Commands::BaseCommand
|
|
6
6
|
desc "Start the PostgreSQL console."
|
|
7
7
|
|
|
8
|
-
argument :server_name, required: true, desc: "The name of the server
|
|
8
|
+
argument :server_name, required: true, desc: "The name of the server"
|
|
9
9
|
|
|
10
10
|
option :user, default: "admin", aliases: ["-u"], desc: "A user with sudo access"
|
|
11
11
|
|
|
@@ -6,7 +6,7 @@ module Mimas
|
|
|
6
6
|
desc "Create a new database on the server."
|
|
7
7
|
|
|
8
8
|
argument :db_name, required: true, desc: "The name of the database to create"
|
|
9
|
-
argument :server_name, required: true, desc: "The name of the server
|
|
9
|
+
argument :server_name, required: true, desc: "The name of the server"
|
|
10
10
|
|
|
11
11
|
option :user, default: "admin", aliases: ["-u"], desc: "A user with sudo access"
|
|
12
12
|
option :owner, aliases: ["-o"], desc: "The owner of the database. Omit to create a new role named after the database"
|
|
@@ -6,7 +6,7 @@ module Mimas
|
|
|
6
6
|
desc "Create a new PostgreSQL role."
|
|
7
7
|
|
|
8
8
|
argument :role_name, required: true, desc: "The name of the role to create"
|
|
9
|
-
argument :server_name, required: true, desc: "The name of the server
|
|
9
|
+
argument :server_name, required: true, desc: "The name of the server"
|
|
10
10
|
|
|
11
11
|
option :user, default: "admin", aliases: ["-u"], desc: "A user with sudo access"
|
|
12
12
|
option :password, aliases: ["-p"], desc: "The password for the role. Leave blank to autogenerate a secure password"
|
|
@@ -5,7 +5,7 @@ module Mimas
|
|
|
5
5
|
class Setup < Mimas::CLI::Commands::BaseCommand
|
|
6
6
|
desc "Install and configure PostgreSQL on the server."
|
|
7
7
|
|
|
8
|
-
argument :server_name, required: true, desc: "The name of the server to
|
|
8
|
+
argument :server_name, required: true, desc: "The name of the server to setup PostgreSQL on"
|
|
9
9
|
|
|
10
10
|
option :user, default: "admin", aliases: ["-u"], desc: "A user with sudo access"
|
|
11
11
|
|