vagrant-norequiretty 0.0.3 → 0.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 69d5478c850807408b38d24a8fa60b91c001f277
4
- data.tar.gz: cd68e552dc9cc2ebd2bd2f0b57e4384675772451
3
+ metadata.gz: d5a2471c3e568ad0f3f1a61150ff1f1309fcfce4
4
+ data.tar.gz: d7ff900c1632223daf59e9706d55b5b4c46336cf
5
5
  SHA512:
6
- metadata.gz: 474d10f1a07c90ea01bd4de8d4d921c4d94f36e33b5d2ab48a23bf966c25e04eac8cea38471a2de9213b8018692063d263edd164025bc33af9354e1ebe0d8d68
7
- data.tar.gz: 731e6969d7c7d922db8b6f10c649a9daa1432b0b0fec29dcaffd244217b69b3c5cb1bb06d24bce6b48648107f918f0cb1468fa2286a9d1ea11e2a7ba4e16a5dd
6
+ metadata.gz: 74a1a9058322358228cced888314ba89884856d76d44fe6ca0c3a55a547debde3127ec923e962bfacf6aea284028ef9b020e43145b6cfb45434d64376c28d1f8
7
+ data.tar.gz: 40de5fff5191b3087060e48dc2a78f597f6f0fed10f04c1c6a57887dd207345bf88ecfd58fe766ab2350d16b6db2ff6285db7ff0de669ca1350e69b80f1f32e4
data/CHANGELOG CHANGED
@@ -1,6 +1,16 @@
1
1
  CHANGELOG
2
2
  =========
3
3
 
4
+ 0.0.4
5
+ -----
6
+
7
+ 2016-04-11
8
+
9
+ This is a backwards compatible bugfix release.
10
+
11
+ * (GH-3) Fix support for vagrant-openstack-plugin.
12
+
13
+
4
14
  0.0.3
5
15
  -----
6
16
 
@@ -14,11 +14,16 @@ class VagrantNoRequireTTY::Plugin < Vagrant.plugin(2)
14
14
  require_relative 'action'
15
15
  action = VagrantNoRequireTTY::Action
16
16
 
17
- # For RSync.
17
+ # For RSync and provisioners.
18
18
  hook.after(Vagrant::Action::Builtin::SyncedFolders, action)
19
+ # For vagrant-openstack-provider
19
20
  if defined? VagrantPlugins::Openstack::Action::SyncFolders
20
21
  hook.after(VagrantPlugins::Openstack::Action::SyncFolders, action)
21
22
  end
23
+ # For vagrant-openstack-plugin
24
+ if defined? VagrantPlugins::OpenStack::Action::CreateNetworkInterfaces
25
+ hook.before(VagrantPlugins::OpenStack::Action::CreateNetworkInterfaces, action)
26
+ end
22
27
  end
23
28
 
24
29
  # For everything else.
@@ -1,3 +1,3 @@
1
1
  module VagrantNoRequireTTY
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-norequiretty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Charlie Sharpsteen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-04-07 00:00:00.000000000 Z
11
+ date: 2016-04-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |
14
14
  Ever get a "sorry, you must have a tty to run sudo" error? Maybe