exe/solr_wrapper in solr_wrapper-0.10.0 vs exe/solr_wrapper in solr_wrapper-0.11.0

- old
+ new

@@ -30,12 +30,12 @@ opts.on("-c", "--cloud", "Run solr in cloud mode") do |c| options[:cloud] = c end - opts.on("--download_path PATH", "Download/use solr at the given path") do |d| - options[:download_path] = d + opts.on("--solr_zip_path PATH", "Download/use solr at the given path") do |d| + options[:solr_zip_path] = d end opts.on("-iDIR", "--instance_directory DIR", "Install/use solr at the given directory") do |d| options[:instance_dir] = d end @@ -48,9 +48,13 @@ collection_options[:name] = c end opts.on("-dDIR", "--collection_config DIR", "Create a default solr collection with the files from the given directory") do |d| collection_options[:dir] = d + end + + opts.on("--[no-]persist", "Persist the solr connection data") do |d| + collection_options[:persist] = d end opts.on("--no-checksum", "Skip running checksum validation on the downloaded file") do |d| options[:ignore_md5sum] = true end