itchy 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 33732680739a9df7269d7b6da2617791ad106fe8
4
- data.tar.gz: b3ec978d0f1bd1dd036474cffe4fa91d0c90782f
3
+ metadata.gz: ea24e9dd7f4ede2cb663e1175290465c3867ce2d
4
+ data.tar.gz: d44ecfb85d3abc31bd5893a14d43cde398030f6d
5
5
  SHA512:
6
- metadata.gz: 8dcacca6d9448fbde79357291c2d58fa01f31ff00e9ac5745110ae8bd9bc62795838a9eb60b06c66bccffaa7f6acd22205c13e0abbc52681a27a13a8e24ba9f8
7
- data.tar.gz: 95ff929be64811219debf0676cbf9fb39977c2d77a5b6f871bd831fa6b5b4be1da233d990c9a8d6b648abe2fd9a350b5f2162b371f5fed489306fe1f1548258b
6
+ metadata.gz: 1f4c8f66d5e42a87ec4956aba8fdd641745966bc3cc44cfbe0c4d1155ea71e5821490986db9dfe445b52ed3d99fce790ab40d1a4b7899d728f364e01f07b937a
7
+ data.tar.gz: b591190a9cab93a41936eb3e7a762703a6fb02bb7429a85560b5b8114886f25bd26c75c6d4130df4359f30916d810ad8f2f3e0d77f494166f522ed281447ece6
data/bin/itchy CHANGED
@@ -79,8 +79,6 @@ class ItchyRunnable < Thor
79
79
  aliases: '-o', desc: 'Path to a directory where processed events descriptors will be stored'
80
80
  method_option :descriptor_dir, type: :string, default: Itchy::Settings.descriptor_dir,
81
81
  aliases: '-e', desc: 'Path to a directory where appliance descriptors will be stored'
82
- method_option :input_image_formats, type: :array, default: Itchy::Settings.input_image_formats,
83
- aliases: '-i', desc: 'Known input image formats'
84
82
  method_option *shared_option_log_to
85
83
  method_option *shared_option_log_level
86
84
  method_option *shared_option_debug
data/config/itchy.yml CHANGED
@@ -1,18 +1,11 @@
1
1
  ---
2
2
  defaults: &defaults
3
- metadata_dir: /var/spool/onevmcatcher
4
- template_dir:
5
- output_dir:
6
- descriptor_dir: /vmcatcher/descriptors
3
+ metadata_dir: /var/spool/itchy/metadata
4
+ output_dir: /var/spool/itchy/output
5
+ descriptor_dir: var/spool/itchy/descriptors
7
6
  log_to: stderr
8
7
  log_level: error
9
- ca_path: /etc/grid-security/certificates
10
- ca_file:
11
8
  debug: false
12
- skip_ca_check: false
13
- input_image_formats:
14
- - raw
15
- - ova
16
9
  output_image_format: qcow2
17
10
  qemu_img_binary: /usr/bin/qemu-img
18
11
 
@@ -18,8 +18,8 @@ module Itchy
18
18
  @options = options
19
19
  @inputs = ([] << KNOWN_IMAGE_FORMATS << KNOWN_IMAGE_ARCHIVES).flatten
20
20
 
21
- fail ArgumentError, 'Unsupported input image format enabled in configuration! ' \
22
- "#{@inputs.inspect}" unless (@options.input_image_formats - @inputs).empty?
21
+ #fail ArgumentError, 'Unsupported input image format enabled in configuration! ' \
22
+ # "#{@inputs.inspect}" unless (@options.input_image_formats - @inputs).empty?
23
23
  # fail "Unsupported output image format enabled in configuration! " \
24
24
  # "#{KNOWN_IMAGE_FORMATS.inspect}" unless (@options.required_format - KNOWN_IMAGE_FORMATS).empty?
25
25
  end
data/lib/itchy/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Itchy
2
- VERSION = '0.2.0' unless defined?(::Itchy::VERSION)
2
+ VERSION = '0.2.1' unless defined?(::Itchy::VERSION)
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: itchy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lubomir Kosaristan
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-01-14 00:00:00.000000000 Z
12
+ date: 2016-01-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: opennebula