vagrant-aws-dns-synchronous 0.2.6.4 → 0.2.6.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 88f6cadd0b878f683bd73559bdfa09083ce8ec91
4
- data.tar.gz: e6e346ed338afcab6586739722a1faecbf9c3607
3
+ metadata.gz: 9889d1a208637c0e903af138fc0a072725d314d4
4
+ data.tar.gz: a5a1d62d282413f3441e27654b51956694b03859
5
5
  SHA512:
6
- metadata.gz: 47bfc5e22180948fd51c497a636e546e5ec441feaa30e9707e9bf3f93136340ff0081c8e2816135d173253f0e369d8fe9b34d2d68180a3f7c230c5d9e7f6d1b8
7
- data.tar.gz: 692913c29b3bccb1d593e159b5d05a8a8e9cf300ed40279898fc9b024c99b9be5507edff8fa2f691ea6e3f8c98d96b6c1d2d80a7ec8f0482ed4b509ce650ff61
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
- @machine.ui.info("Configuring DNS record...")
11
+ env[:ui].info("Configuring DNS record...")
12
12
  @aws.add_record(hosted_zone_id, record, type, value)
13
- @machine.ui.info("Updated DNS record #{record} to point to #{value}.")
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
- @machine.ui.info("Removing dns record #{record}.")
12
+ env[:ui].info("Removing DNS record #{record}.")
13
13
  end
14
14
  end
15
15
 
@@ -1,5 +1,5 @@
1
1
  module Vagrant
2
2
  module AwsDns
3
- VERSION = "0.2.6.4"
3
+ VERSION = "0.2.6.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-aws-dns-synchronous
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.6.4
4
+ version: 0.2.6.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nassim Kacha