abiquo-etk 0.4.22 → 0.4.23
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/abiquo-etk.gemspec +2 -2
- data/abiquo-etk.spec +4 -1
- data/lib/abicli/commands/instant-deploy.rb +9 -0
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.23
|
data/abiquo-etk.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{abiquo-etk}
|
8
|
-
s.version = "0.4.
|
8
|
+
s.version = "0.4.23"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Sergio Rubio"]
|
12
|
-
s.date = %q{2010-10-
|
12
|
+
s.date = %q{2010-10-25}
|
13
13
|
s.description = %q{Tools to troubleshoot your Abiquo installation}
|
14
14
|
s.email = %q{srubio@abiquo.com}
|
15
15
|
s.executables = ["abiquo-check-16-install", "aetk-setup-rs", "aetk-setup-v2v", "abicli", "aetk-setup-server"]
|
data/abiquo-etk.spec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Summary: Abiquo Elite Toolkit
|
7
7
|
Name: rubygem-%{gemname}
|
8
|
-
Version: 0.4.
|
8
|
+
Version: 0.4.22
|
9
9
|
Release: 1%{?dist}
|
10
10
|
Group: Development/Languages
|
11
11
|
License: GPLv2+ or Ruby
|
@@ -57,6 +57,9 @@ rm -rf %{buildroot}
|
|
57
57
|
|
58
58
|
|
59
59
|
%changelog
|
60
|
+
* Thu Oct 25 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.22-1
|
61
|
+
- Updated to upstream 0.4.22
|
62
|
+
|
60
63
|
* Thu Oct 21 2010 : Sergio Rubio <srubio@abiquo.com> - 0.4.20-1
|
61
64
|
- Updated to upstream 0.4.20
|
62
65
|
|
@@ -177,7 +177,16 @@ if ARGV[0] == 'instant-deploy'
|
|
177
177
|
File.open(target_dir + '/run.sh', 'w') do |f|
|
178
178
|
f.puts "#!/bin/sh"
|
179
179
|
f.puts "MEM=#{mem}"
|
180
|
+
f.puts "TAP=vtap0"
|
181
|
+
f.puts ""
|
180
182
|
f.puts "kvm -m #{mem} -drive file=#{File.basename(disk_file)} -net user,hostfwd=tcp:127.0.0.1:8980-:8080,hostfwd=tcp:127.0.0.1:2300-:22 -net nic -boot order=c > /dev/null 2>&1"
|
183
|
+
f.puts ""
|
184
|
+
f.puts "#"
|
185
|
+
f.puts "# Comment the above line and uncomment this to use bridged networking."
|
186
|
+
f.puts "# You will need to have a working bridge setup in order to use this."
|
187
|
+
f.puts "# Update TAP variable above to fill your needs."
|
188
|
+
f.puts "#"
|
189
|
+
f.puts "#kvm -m #{mem} -drive file=#{File.basename(disk_file)} -net tap,ifname=$TAP -net nic -boot order=c > /dev/null 2>&1"
|
181
190
|
end
|
182
191
|
boot_vm :disk_file => disk_file, :cdrom => cdrom, :mem => mem
|
183
192
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: abiquo-etk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 33
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 0.4.
|
9
|
+
- 23
|
10
|
+
version: 0.4.23
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Sergio Rubio
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-10-
|
18
|
+
date: 2010-10-25 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|