vagrant-sptsync 0.0.40 → 0.0.41
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
|
+
ZThhOWMzYzNjNDczMGIyOTkyZWE4NmJjZmZlY2RhYjU5ODgxYmU2MA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
Zjg5NzFiY2Y1NTExNmE4NTI5YzJkYmQwNDE4YTg1ZDlhNzdmNzE5ZA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NGI0M2VhOWY5YmFiY2E3MzA0NmNiMjBjZDI5NGJhZWJmNTNlYTdlYTU5N2Y0
|
10
|
+
NjNjMGVlYWJkMDYxNjljZDNiMmQ1NmY2MWQyOTlhMTY5MWE3ZWQzMGZhMjYw
|
11
|
+
YzM5YWQxODFlOWQ2ZTJlNTlmYzIwYjBmN2Y4M2Q4ZmFhMTgwNzk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NzQ5MzIwMTQ0YTA0ZTYzM2ViYzdkNzBmYjQwYzQ5MjgzYjkxNmIyZmQ0N2Q2
|
14
|
+
MmJkZTg4MTFlMDAwMmQxN2VjMWQ2OTJhMWMwOWYwN2ViNzdmMjQ3MjY3ZGE1
|
15
|
+
MTFhNjgzMzcwOTBjZGIwMjZiNDczZjI2N2VlMTY2NzBhMzZhMTI=
|
@@ -93,14 +93,14 @@ module VagrantPlugins
|
|
93
93
|
end
|
94
94
|
|
95
95
|
def validate
|
96
|
-
command = "drush @#{@options[:site]} status > /dev/null"
|
97
|
-
ssh_opts = { extra_args: ['-q'] } # make it quiet
|
98
|
-
with_target_vms(nil, single_target: true) do |vm|
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
end
|
96
|
+
# command = "drush @#{@options[:site]} status > /dev/null"
|
97
|
+
# ssh_opts = { extra_args: ['-q'] } # make it quiet
|
98
|
+
# with_target_vms(nil, single_target: true) do |vm|
|
99
|
+
# env = vm.action(:ssh_run, ssh_run_command: command, ssh_opts: ssh_opts)
|
100
|
+
# if env[:ssh_run_exit_status] != 0
|
101
|
+
# raise SiteError.new(@options[:site])
|
102
|
+
# end
|
103
|
+
# end
|
104
104
|
end
|
105
105
|
|
106
106
|
# Prints the help out for this command
|