vagrant-aws-dns-synchronous 0.2.6.4 → 0.2.6.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9889d1a208637c0e903af138fc0a072725d314d4
|
4
|
+
data.tar.gz: a5a1d62d282413f3441e27654b51956694b03859
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eb0af973323ce87c90ecb648c19324847b34ea97fb050d14a172987800d7b6a27ab30f966ee642bdd1338f651ac4bc4e15989b237623cb858e7cb6f8d6cbc6e1
|
7
|
+
data.tar.gz: f598fb09ee69b1666a7628b0072eec584dbf36ba9ca735be4d7445f225747a7fd0c6973d7dbaf193c7bbb0ba44456446ade953f4a816ca2ac0b06a0370f66129
|
@@ -8,9 +8,9 @@ module VagrantPlugins
|
|
8
8
|
|
9
9
|
def call(env)
|
10
10
|
super env do |hosted_zone_id, record, type, value|
|
11
|
-
|
11
|
+
env[:ui].info("Configuring DNS record...")
|
12
12
|
@aws.add_record(hosted_zone_id, record, type, value)
|
13
|
-
|
13
|
+
env[:ui].info("Updated DNS record #{record} to point to #{value}.")
|
14
14
|
end
|
15
15
|
end
|
16
16
|
|
@@ -9,7 +9,7 @@ module VagrantPlugins
|
|
9
9
|
def call(env)
|
10
10
|
super env do |hosted_zone_id, record, type, value|
|
11
11
|
@aws.remove_record(hosted_zone_id, record, type, value)
|
12
|
-
|
12
|
+
env[:ui].info("Removing DNS record #{record}.")
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|