elasticDynamoDb 1.1.1 → 1.1.2
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 +8 -8
- data/bin/elasticDynamoDb +6 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NWI2YTQ4Yzg1MGE4NmI5NzgwYzAyMTkwYjJmOTY1ZjYwY2Y4Yjg2MA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
NGE1ZTcyNTJkM2M1ZTY0OWM4NmI2YzExMGI4OWM1YTQzYzY2NGY2ZQ==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MGExMzA2MDY5YmNiMjM5MWU2MDg3NGE0ZDM0ZDM4ZGIwOGMyMjE2ZjJiOGNk
|
|
10
|
+
ZjYzMjhlODM4YzU0OTU4ODZmZjhlMDZhZGIyMjk0ZWEwMjFiNDEyMDhkOGY5
|
|
11
|
+
MjAzMmMwMDRjODA1ZGM2MTQ4Zjg5MmUyNjg0YWU1NDgwOWMwMGM=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NWIzZTcwZmQwYjNjZTg1ZDA0MjY0NTBiMTVjNTQ2MmI0NmM5YWFhNWQ5OGZh
|
|
14
|
+
N2FlYjg0ZmFmZGJjMzBkNTQ3MjUzYjM0Y2JkN2EzOTIxZjg0Njc2ZTIwYTYx
|
|
15
|
+
YWQyYjFmYTJiN2RhMmUxZTc4MGI1MzRhNDZjZjc0YTE0MTZlYjM=
|
data/bin/elasticDynamoDb
CHANGED
|
@@ -79,11 +79,6 @@ private
|
|
|
79
79
|
puts "error trying the stop command: #{e}"
|
|
80
80
|
end
|
|
81
81
|
update_aws_api
|
|
82
|
-
begin
|
|
83
|
-
system(options[:start_cmd]) if options[:start_cmd]
|
|
84
|
-
rescue Exception => e
|
|
85
|
-
puts "error trying the start command: #{e}"
|
|
86
|
-
end
|
|
87
82
|
end
|
|
88
83
|
|
|
89
84
|
def read_config(config_file)
|
|
@@ -223,7 +218,12 @@ private
|
|
|
223
218
|
log_changes("Update AWS via api call with the following data:\n #{provisioning}\n")
|
|
224
219
|
update_tables(provisioning)
|
|
225
220
|
else
|
|
226
|
-
|
|
221
|
+
if @@in_restore
|
|
222
|
+
confirmed = true
|
|
223
|
+
else
|
|
224
|
+
confirmed = yes?("send the start command #{options[:start_cmd]} ? (yes/no)"
|
|
225
|
+
end
|
|
226
|
+
|
|
227
227
|
if confirmed
|
|
228
228
|
begin
|
|
229
229
|
system(options[:start_cmd]) if options[:start_cmd]
|