k8sflow 0.11.3 → 0.11.4
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/k8sflow/command/pg/restore.rb +1 -1
- data/lib/k8sflow/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4ae0c6526bcf0c4e99c791a897b080480269901b
|
|
4
|
+
data.tar.gz: c0c2e392497f54a50782040457bf4aa36ac9f8a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f9f7699f408fc849b76d5b1ef6e7d4ec34f6aa12d9fd14e90d33b2180ab048df989d9bedcdd007924c49929fadbd96ef6fa5dd0a9b911dbea6e2c8c6fef9a1f9
|
|
7
|
+
data.tar.gz: cb5de5351bb0f7e11018d3ea78bc124870e381957ba76435101b270eead5e17b084873bdda0f82c1d089a55371420d0b21a705c888d3738a9132ae32ebdb4299
|
|
@@ -13,7 +13,7 @@ module K8sflow
|
|
|
13
13
|
option :confirm, "--confirm CONFIRM", "Command line confirmation, no prompt"
|
|
14
14
|
|
|
15
15
|
def self.call
|
|
16
|
-
file =
|
|
16
|
+
file = options[:src]
|
|
17
17
|
puts "PGSSLMODE=#{ssl?} PGPASSWORD=#{database[:password]} pg_restore --port #{database[:port]} --host #{database[:host]} --username #{database[:user]} --verbose --no-acl --no-owner -d #{database[:database]} #{file}"
|
|
18
18
|
confirm_command("on #{database[:host]} overwrite the database #{database[:database]}")
|
|
19
19
|
exec("PGSSLMODE=#{ssl?} PGPASSWORD=#{database[:password]} pg_restore --port #{database[:port]} --host #{database[:host]} --username #{database[:user]} --verbose --no-acl --no-owner -d #{database[:database]} #{file}")
|
data/lib/k8sflow/version.rb
CHANGED