chef-solr 0.10.0.beta.10 → 0.10.0.rc.0
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.
- data/lib/chef/solr/solr_installer.rb +3 -2
- data/lib/chef/solr/version.rb +1 -1
- metadata +3 -3
|
@@ -326,6 +326,7 @@ FAIL
|
|
|
326
326
|
chdir(config.solr_jetty_path) do
|
|
327
327
|
sh("tar zxvf #{File.join(PACKAGED_SOLR_DIR, 'solr-jetty.tar.gz')}")
|
|
328
328
|
end
|
|
329
|
+
chown(config.solr_jetty_path)
|
|
329
330
|
end
|
|
330
331
|
end
|
|
331
332
|
|
|
@@ -352,11 +353,11 @@ FAIL
|
|
|
352
353
|
|
|
353
354
|
def chown(file)
|
|
354
355
|
if config.user
|
|
355
|
-
msg = "chown #{config.user}"
|
|
356
|
+
msg = "chown -R #{config.user}"
|
|
356
357
|
msg << ":#{config.group}" if config.group
|
|
357
358
|
msg << " #{file}"
|
|
358
359
|
say msg
|
|
359
|
-
FileUtils.
|
|
360
|
+
FileUtils.chown_R(config.user, config.group, file) unless config.noop?
|
|
360
361
|
end
|
|
361
362
|
end
|
|
362
363
|
|
data/lib/chef/solr/version.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: chef-solr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease: 7
|
|
5
|
-
version: 0.10.0.
|
|
5
|
+
version: 0.10.0.rc.0
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Adam Jacob
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-04-
|
|
13
|
+
date: 2011-04-15 00:00:00 -07:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -21,7 +21,7 @@ dependencies:
|
|
|
21
21
|
requirements:
|
|
22
22
|
- - "="
|
|
23
23
|
- !ruby/object:Gem::Version
|
|
24
|
-
version: 0.10.0.
|
|
24
|
+
version: 0.10.0.rc.0
|
|
25
25
|
type: :runtime
|
|
26
26
|
version_requirements: *id001
|
|
27
27
|
description:
|