vagrant-ovirt4 1.0.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.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.rspec +1 -0
- data/Gemfile +18 -0
- data/Gemfile.lock +54 -0
- data/README.md +110 -0
- data/Rakefile +22 -0
- data/example_box/README.md +13 -0
- data/example_box/Vagrantfile +14 -0
- data/example_box/metadata.json +4 -0
- data/lib/vagrant-ovirt4/action/connect_ovirt.rb +38 -0
- data/lib/vagrant-ovirt4/action/create_network_interfaces.rb +58 -0
- data/lib/vagrant-ovirt4/action/create_vm.rb +92 -0
- data/lib/vagrant-ovirt4/action/destroy_vm.rb +25 -0
- data/lib/vagrant-ovirt4/action/halt_vm.rb +23 -0
- data/lib/vagrant-ovirt4/action/is_created.rb +19 -0
- data/lib/vagrant-ovirt4/action/is_running.rb +19 -0
- data/lib/vagrant-ovirt4/action/message_already_up.rb +16 -0
- data/lib/vagrant-ovirt4/action/message_not_created.rb +16 -0
- data/lib/vagrant-ovirt4/action/message_not_suspended.rb +16 -0
- data/lib/vagrant-ovirt4/action/message_not_up.rb +16 -0
- data/lib/vagrant-ovirt4/action/message_powering_up.rb +16 -0
- data/lib/vagrant-ovirt4/action/message_saving_state.rb +16 -0
- data/lib/vagrant-ovirt4/action/read_ssh_info.rb +56 -0
- data/lib/vagrant-ovirt4/action/read_state.rb +47 -0
- data/lib/vagrant-ovirt4/action/set_name_of_domain.rb +24 -0
- data/lib/vagrant-ovirt4/action/snapshot_delete.rb +37 -0
- data/lib/vagrant-ovirt4/action/snapshot_list.rb +58 -0
- data/lib/vagrant-ovirt4/action/snapshot_save.rb +28 -0
- data/lib/vagrant-ovirt4/action/start_vm.rb +80 -0
- data/lib/vagrant-ovirt4/action/suspend_vm.rb +24 -0
- data/lib/vagrant-ovirt4/action/sync_folders.rb +69 -0
- data/lib/vagrant-ovirt4/action/wait_til_suspended.rb +44 -0
- data/lib/vagrant-ovirt4/action/wait_till_down.rb +47 -0
- data/lib/vagrant-ovirt4/action/wait_till_up.rb +83 -0
- data/lib/vagrant-ovirt4/action.rb +255 -0
- data/lib/vagrant-ovirt4/cap/snapshot_list.rb +12 -0
- data/lib/vagrant-ovirt4/cap/snapshot_save.rb +12 -0
- data/lib/vagrant-ovirt4/config.rb +49 -0
- data/lib/vagrant-ovirt4/errors.rb +48 -0
- data/lib/vagrant-ovirt4/plugin.rb +80 -0
- data/lib/vagrant-ovirt4/provider.rb +76 -0
- data/lib/vagrant-ovirt4/util/collection.rb +21 -0
- data/lib/vagrant-ovirt4/util/timer.rb +17 -0
- data/lib/vagrant-ovirt4/util.rb +9 -0
- data/lib/vagrant-ovirt4/version.rb +6 -0
- data/lib/vagrant-ovirt4.rb +38 -0
- data/locales/en.yml +74 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/vagrant-ovirt4/action/is_created_spec.rb +40 -0
- data/spec/vagrant-ovirt4/action/is_running_spec.rb +40 -0
- data/spec/vagrant-ovirt4/action/message_already_up_spec.rb +20 -0
- data/spec/vagrant-ovirt4/action/message_not_created_spec.rb +20 -0
- data/spec/vagrant-ovirt4/action/message_not_suspended_spec.rb +20 -0
- data/spec/vagrant-ovirt4/action/message_not_up_spec.rb +20 -0
- data/spec/vagrant-ovirt4/action/message_powering_up_spec.rb +20 -0
- data/spec/vagrant-ovirt4/action/message_saving_state_spec.rb +20 -0
- data/spec/vagrant-ovirt4/action/read_ssh_info_spec.rb +73 -0
- data/spec/vagrant-ovirt4/action/read_state_spec.rb +68 -0
- data/spec/vagrant-ovirt4/config_spec.rb +55 -0
- data/tools/prepare_redhat_for_box.sh +113 -0
- data/vagrant-ovirt4.gemspec +26 -0
- metadata +180 -0
metadata
ADDED
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: vagrant-ovirt4
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Marcus Young
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2017-02-04 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: ovirt-engine-sdk
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '4.0'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 4.0.6
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
requirements:
|
|
27
|
+
- - "~>"
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '4.0'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 4.0.6
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: rake
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
40
|
+
type: :development
|
|
41
|
+
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - "~>"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: '0'
|
|
47
|
+
- !ruby/object:Gem::Dependency
|
|
48
|
+
name: rspec
|
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
|
50
|
+
requirements:
|
|
51
|
+
- - "~>"
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: '3.4'
|
|
54
|
+
type: :development
|
|
55
|
+
prerelease: false
|
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
+
requirements:
|
|
58
|
+
- - "~>"
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
version: '3.4'
|
|
61
|
+
- !ruby/object:Gem::Dependency
|
|
62
|
+
name: rspec-its
|
|
63
|
+
requirement: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - "~>"
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: '0'
|
|
68
|
+
type: :development
|
|
69
|
+
prerelease: false
|
|
70
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - "~>"
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: '0'
|
|
75
|
+
description: Vagrant provider for oVirt and RHEV v4
|
|
76
|
+
email:
|
|
77
|
+
- myoung34@my.apsu.edu
|
|
78
|
+
executables: []
|
|
79
|
+
extensions: []
|
|
80
|
+
extra_rdoc_files: []
|
|
81
|
+
files:
|
|
82
|
+
- ".gitignore"
|
|
83
|
+
- ".rspec"
|
|
84
|
+
- Gemfile
|
|
85
|
+
- Gemfile.lock
|
|
86
|
+
- README.md
|
|
87
|
+
- Rakefile
|
|
88
|
+
- example_box/README.md
|
|
89
|
+
- example_box/Vagrantfile
|
|
90
|
+
- example_box/metadata.json
|
|
91
|
+
- lib/vagrant-ovirt4.rb
|
|
92
|
+
- lib/vagrant-ovirt4/action.rb
|
|
93
|
+
- lib/vagrant-ovirt4/action/connect_ovirt.rb
|
|
94
|
+
- lib/vagrant-ovirt4/action/create_network_interfaces.rb
|
|
95
|
+
- lib/vagrant-ovirt4/action/create_vm.rb
|
|
96
|
+
- lib/vagrant-ovirt4/action/destroy_vm.rb
|
|
97
|
+
- lib/vagrant-ovirt4/action/halt_vm.rb
|
|
98
|
+
- lib/vagrant-ovirt4/action/is_created.rb
|
|
99
|
+
- lib/vagrant-ovirt4/action/is_running.rb
|
|
100
|
+
- lib/vagrant-ovirt4/action/message_already_up.rb
|
|
101
|
+
- lib/vagrant-ovirt4/action/message_not_created.rb
|
|
102
|
+
- lib/vagrant-ovirt4/action/message_not_suspended.rb
|
|
103
|
+
- lib/vagrant-ovirt4/action/message_not_up.rb
|
|
104
|
+
- lib/vagrant-ovirt4/action/message_powering_up.rb
|
|
105
|
+
- lib/vagrant-ovirt4/action/message_saving_state.rb
|
|
106
|
+
- lib/vagrant-ovirt4/action/read_ssh_info.rb
|
|
107
|
+
- lib/vagrant-ovirt4/action/read_state.rb
|
|
108
|
+
- lib/vagrant-ovirt4/action/set_name_of_domain.rb
|
|
109
|
+
- lib/vagrant-ovirt4/action/snapshot_delete.rb
|
|
110
|
+
- lib/vagrant-ovirt4/action/snapshot_list.rb
|
|
111
|
+
- lib/vagrant-ovirt4/action/snapshot_save.rb
|
|
112
|
+
- lib/vagrant-ovirt4/action/start_vm.rb
|
|
113
|
+
- lib/vagrant-ovirt4/action/suspend_vm.rb
|
|
114
|
+
- lib/vagrant-ovirt4/action/sync_folders.rb
|
|
115
|
+
- lib/vagrant-ovirt4/action/wait_til_suspended.rb
|
|
116
|
+
- lib/vagrant-ovirt4/action/wait_till_down.rb
|
|
117
|
+
- lib/vagrant-ovirt4/action/wait_till_up.rb
|
|
118
|
+
- lib/vagrant-ovirt4/cap/snapshot_list.rb
|
|
119
|
+
- lib/vagrant-ovirt4/cap/snapshot_save.rb
|
|
120
|
+
- lib/vagrant-ovirt4/config.rb
|
|
121
|
+
- lib/vagrant-ovirt4/errors.rb
|
|
122
|
+
- lib/vagrant-ovirt4/plugin.rb
|
|
123
|
+
- lib/vagrant-ovirt4/provider.rb
|
|
124
|
+
- lib/vagrant-ovirt4/util.rb
|
|
125
|
+
- lib/vagrant-ovirt4/util/collection.rb
|
|
126
|
+
- lib/vagrant-ovirt4/util/timer.rb
|
|
127
|
+
- lib/vagrant-ovirt4/version.rb
|
|
128
|
+
- locales/en.yml
|
|
129
|
+
- spec/spec_helper.rb
|
|
130
|
+
- spec/vagrant-ovirt4/action/is_created_spec.rb
|
|
131
|
+
- spec/vagrant-ovirt4/action/is_running_spec.rb
|
|
132
|
+
- spec/vagrant-ovirt4/action/message_already_up_spec.rb
|
|
133
|
+
- spec/vagrant-ovirt4/action/message_not_created_spec.rb
|
|
134
|
+
- spec/vagrant-ovirt4/action/message_not_suspended_spec.rb
|
|
135
|
+
- spec/vagrant-ovirt4/action/message_not_up_spec.rb
|
|
136
|
+
- spec/vagrant-ovirt4/action/message_powering_up_spec.rb
|
|
137
|
+
- spec/vagrant-ovirt4/action/message_saving_state_spec.rb
|
|
138
|
+
- spec/vagrant-ovirt4/action/read_ssh_info_spec.rb
|
|
139
|
+
- spec/vagrant-ovirt4/action/read_state_spec.rb
|
|
140
|
+
- spec/vagrant-ovirt4/config_spec.rb
|
|
141
|
+
- tools/prepare_redhat_for_box.sh
|
|
142
|
+
- vagrant-ovirt4.gemspec
|
|
143
|
+
homepage: https://github.com/myoung34/vagrant-ovirt4
|
|
144
|
+
licenses:
|
|
145
|
+
- MIT
|
|
146
|
+
metadata: {}
|
|
147
|
+
post_install_message:
|
|
148
|
+
rdoc_options: []
|
|
149
|
+
require_paths:
|
|
150
|
+
- lib
|
|
151
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
152
|
+
requirements:
|
|
153
|
+
- - ">="
|
|
154
|
+
- !ruby/object:Gem::Version
|
|
155
|
+
version: '0'
|
|
156
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
|
+
requirements:
|
|
158
|
+
- - ">="
|
|
159
|
+
- !ruby/object:Gem::Version
|
|
160
|
+
version: '0'
|
|
161
|
+
requirements: []
|
|
162
|
+
rubyforge_project:
|
|
163
|
+
rubygems_version: 2.4.8
|
|
164
|
+
signing_key:
|
|
165
|
+
specification_version: 4
|
|
166
|
+
summary: This vagrant plugin provides the ability to create, control, and destroy
|
|
167
|
+
virtual machines under oVirt/RHEV
|
|
168
|
+
test_files:
|
|
169
|
+
- spec/spec_helper.rb
|
|
170
|
+
- spec/vagrant-ovirt4/action/is_created_spec.rb
|
|
171
|
+
- spec/vagrant-ovirt4/action/is_running_spec.rb
|
|
172
|
+
- spec/vagrant-ovirt4/action/message_already_up_spec.rb
|
|
173
|
+
- spec/vagrant-ovirt4/action/message_not_created_spec.rb
|
|
174
|
+
- spec/vagrant-ovirt4/action/message_not_suspended_spec.rb
|
|
175
|
+
- spec/vagrant-ovirt4/action/message_not_up_spec.rb
|
|
176
|
+
- spec/vagrant-ovirt4/action/message_powering_up_spec.rb
|
|
177
|
+
- spec/vagrant-ovirt4/action/message_saving_state_spec.rb
|
|
178
|
+
- spec/vagrant-ovirt4/action/read_ssh_info_spec.rb
|
|
179
|
+
- spec/vagrant-ovirt4/action/read_state_spec.rb
|
|
180
|
+
- spec/vagrant-ovirt4/config_spec.rb
|