vagrant-mcs 0.8.35 → 0.8.36
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-mcs/provider.rb +3 -3
- data/lib/vagrant-mcs/version.rb +1 -1
- data/locales/en.yml +2 -2
- 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: 788a22316fcb3b9c5dbd33c91d45149ab10ce5ef
|
|
4
|
+
data.tar.gz: 6a44f554dcc741edd470e30fbd5a42a6fba47720
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 920e5212f5085a7fc093ad05c9ef48b8185191cc10149272a15c3cab377ec0726c7e5ada53f88e3a03263251dfd74f7060f9e860453cc559d5b2855b89cbe0bd
|
|
7
|
+
data.tar.gz: a0402e655a8b1cdd0cca10973a2fbe219fe00760a9595dcf51b3afba240cda66b4b3dd7fce836b104f8442a0b83c19fd4de841e7b8bad6940709e88c1ccce16e
|
data/lib/vagrant-mcs/provider.rb
CHANGED
|
@@ -32,9 +32,9 @@ module VagrantPlugins
|
|
|
32
32
|
env = @machine.action("read_state")
|
|
33
33
|
|
|
34
34
|
state_id = env[:machine_state_id]
|
|
35
|
-
if(state_id == "ready")
|
|
36
|
-
|
|
37
|
-
end
|
|
35
|
+
#if(state_id == "ready")
|
|
36
|
+
# state_id = "stopped"
|
|
37
|
+
#end
|
|
38
38
|
|
|
39
39
|
# Get the short and long description
|
|
40
40
|
short = I18n.t("vagrant_mcs.states.short_#{state_id}")
|
data/lib/vagrant-mcs/version.rb
CHANGED
data/locales/en.yml
CHANGED
|
@@ -124,9 +124,9 @@ en:
|
|
|
124
124
|
long_not_created: |-
|
|
125
125
|
The MOS instance is not created. Run `vagrant up` to create it.
|
|
126
126
|
|
|
127
|
-
|
|
127
|
+
short_ready: |-
|
|
128
128
|
stopped
|
|
129
|
-
|
|
129
|
+
long_ready: |-
|
|
130
130
|
The MOS instance is stopped. Run `vagrant up` to start it.
|
|
131
131
|
|
|
132
132
|
short_stopping: |-
|