File: download_mixins.rb

package info (click to toggle)
vagrant 2.2.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 8,072 kB
  • sloc: ruby: 80,731; sh: 369; makefile: 9; lisp: 1
file content (29 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module VagrantPlugins
  module CommandBox
    module DownloadMixins
      # This adds common download command line flags to the given
      # OptionParser, storing the result in the `options` dictionary.
      #
      # @param [OptionParser] parser
      # @param [Hash] options
      def build_download_options(parser, options)
        # Add the options
        parser.on("--insecure", "Do not validate SSL certificates") do |i|
          options[:insecure] = i
        end

        parser.on("--cacert FILE", String, "CA certificate for SSL download") do |c|
          options[:ca_cert] = c
        end

        parser.on("--capath DIR", String, "CA certificate directory for SSL download") do |c|
          options[:ca_path] = c
        end

        parser.on("--cert FILE", String, "A client SSL cert, if needed") do |c|
          options[:client_cert] = c
        end
      end
    end
  end
end