vagrant-mos 0.8.98 → 0.8.99
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/vagrant-mos/command.rb +2 -3
- data/lib/vagrant-mos/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: b08244033818e608f1eb8d223df3715741e71a34
|
|
4
|
+
data.tar.gz: a37bebc7d3f15cf1534f05e4b01a26da0e6bd64f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5dfbd04e3549f8537263fe307a9341c46461e091fea65e55826ded5f71a2640e0b705baf3c26912fa04c2f217c78cb9685b533d7c8baa5050829fd02c028619e
|
|
7
|
+
data.tar.gz: f031ed3137f62f32db4081e6a9e574aa669a22bbb1a44d05fe68cdca5447f36be678e56e644b865798fe6dfff2111fc6ca6887e9cda9c9d2ea2e4ac3000b7d41
|
data/lib/vagrant-mos/command.rb
CHANGED
|
@@ -4,10 +4,9 @@ require "vagrant/action/builder"
|
|
|
4
4
|
|
|
5
5
|
module VagrantPlugins
|
|
6
6
|
module MOS
|
|
7
|
-
include Vagrant::Action::Builtin
|
|
8
7
|
class Command < Vagrant.plugin(2, :command)
|
|
9
8
|
# Include the built-in modules so we can use them as top-level things.
|
|
10
|
-
|
|
9
|
+
include Vagrant::Action::Builtin
|
|
11
10
|
# The autoload farm
|
|
12
11
|
|
|
13
12
|
def execute
|
|
@@ -15,7 +14,7 @@ module VagrantPlugins
|
|
|
15
14
|
|
|
16
15
|
Vagrant::Action::Builder.new.tap do |b|
|
|
17
16
|
action_root = Pathname.new(File.expand_path("../action", __FILE__))
|
|
18
|
-
autoload :ConnectMOS, action_root.join("connect_mos")
|
|
17
|
+
#autoload :ConnectMOS, action_root.join("connect_mos")
|
|
19
18
|
autoload :DescribeTemplates, action_root.join("describe_templates")
|
|
20
19
|
puts autoload?(:ConnectMOS)
|
|
21
20
|
b.use ConfigValidate
|
data/lib/vagrant-mos/version.rb
CHANGED