vagrant-mos 0.9.36 → 0.9.37
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/action.rb +4 -4
- 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: a865e2b0d5da5e6b780f9a1e3dea5b6ed4fd5b28
|
|
4
|
+
data.tar.gz: 0714ded0541e278e9ec9ae07460513d73ef37c7c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa68c483e276077b3154df2bb2fd4553e311fd21a1fbf6add970baee83067aebd84748161aea00a99c9b602d2d9f0f6a15a61710d9884ccdd5ceac5147abcaa8
|
|
7
|
+
data.tar.gz: 76f998b406b104681aa733e7e9951106bafb35585dafd22b669d9d85fef0a69a8f79cbd8f21330b81e379667154213386771edc66dabac18302f5982a366cc56
|
data/lib/vagrant-mos/action.rb
CHANGED
|
@@ -149,8 +149,8 @@ module VagrantPlugins
|
|
|
149
149
|
b1.use Call, IsStopped do |env2, b2|
|
|
150
150
|
if env2[:result]
|
|
151
151
|
b2.use action_prepare_boot
|
|
152
|
-
b2.use Builtin::SyncedFolderCleanup
|
|
153
|
-
b2.use Builtin::SyncedFolders
|
|
152
|
+
b2.use Vagrant::Action::Builtin::SyncedFolderCleanup
|
|
153
|
+
b2.use Vagrant::Action::Builtin::SyncedFolders
|
|
154
154
|
b2.use StartInstance # restart this instance
|
|
155
155
|
else
|
|
156
156
|
b2.use MessageAlreadyCreated # TODO write a better message
|
|
@@ -158,8 +158,8 @@ module VagrantPlugins
|
|
|
158
158
|
end
|
|
159
159
|
else
|
|
160
160
|
b1.use action_prepare_boot
|
|
161
|
-
b1.use Builtin::SyncedFolderCleanup
|
|
162
|
-
b1.use Builtin::SyncedFolders
|
|
161
|
+
b1.use Vagrant::Action::Builtin::SyncedFolderCleanup
|
|
162
|
+
b1.use Vagrant::Action::Builtin::SyncedFolders
|
|
163
163
|
b1.use RunInstance # launch a new instance
|
|
164
164
|
end
|
|
165
165
|
end
|
data/lib/vagrant-mos/version.rb
CHANGED