vagrant-sptsync 0.0.15 → 0.0.16
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 +8 -8
- data/lib/vagrant-sptsync/commands/root.rb +8 -8
- data/lib/vagrant-sptsync/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YTFhYzBhZWMyYzBiNjE5MDY3MTg1NzAyNjc2MzE1NDJjZjg5YTMyNA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
N2I2YmIwMzc5NmJjYmQ4YmJiZTc4ZTczNWQ2OGMxNTc2YWY3ZGVlYQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MTdlYmU3NTI5MWNhMzk1MjJkYTZmMzBhNDBkNTNhMWNlOTQ0MmNjMzIyNTMx
|
10
|
+
MzQ4OWEyM2Y4OGE5MzBhNTg1Y2UyZjc2NGYyOTIxODNkMTdhNzZlYzljN2Ez
|
11
|
+
ZmY0NGJlOTQ2MzQ2MzgxY2NiZmI3MWE4OGY4YzE2OTFkNTljZTg=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OTM1NTZlMDNiM2RkN2QwOTlhZDJlYTZjZjgwMWJkYzc3YmI5YTU2ZThlMmU0
|
14
|
+
OGZiZTEwZDIxYmFjYjczNGZmNDMzYjhiY2IyNmFlZjc0OTUxNDIwZDQ5YzRi
|
15
|
+
MjI0NTlkYTExODRmY2NkNjkzOGNlYWI0OWE3YWZhNDMxOGViMGU=
|
@@ -100,14 +100,14 @@ module VagrantPlugins
|
|
100
100
|
puts "#{@options[:server]} is not valid server. Pulling from dev."
|
101
101
|
end
|
102
102
|
|
103
|
-
command = "drush @#{@options[:site]} status"
|
104
|
-
ssh_opts = { extra_args: ['-q'] } # make it quiet
|
105
|
-
with_target_vms(nil, single_target: true) do |vm|
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
end
|
103
|
+
# command = "drush @#{@options[:site]} status"
|
104
|
+
# ssh_opts = { extra_args: ['-q'] } # make it quiet
|
105
|
+
# with_target_vms(nil, single_target: true) do |vm|
|
106
|
+
# env = vm.action(:ssh_run, ssh_run_command: command, ssh_opts: ssh_opts)
|
107
|
+
# if env[:ssh_run_exit_status] != "0"
|
108
|
+
# raise SiteError.new(@options[:site])
|
109
|
+
# end
|
110
|
+
# end
|
111
111
|
end
|
112
112
|
|
113
113
|
# Prints the help out for this command
|