boxgrinder-build 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/boxgrinder-build/boxgrinder.rb +1 -0
- data/lib/boxgrinder-build/defaults.rb +29 -0
- metadata +4 -3
@@ -23,6 +23,7 @@ require 'boxgrinder-core/defaults'
|
|
23
23
|
require 'boxgrinder-core/models/config'
|
24
24
|
require 'boxgrinder-core/models/appliance-config'
|
25
25
|
require 'boxgrinder-core/helpers/appliance-config-helper'
|
26
|
+
require 'boxgrinder-build/defaults'
|
26
27
|
require 'boxgrinder-build/appliance'
|
27
28
|
require 'boxgrinder-build/validators/validator'
|
28
29
|
require 'boxgrinder-build/validators/appliance-config-parameter-validator'
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# JBoss, Home of Professional Open Source
|
2
|
+
# Copyright 2009, Red Hat Middleware LLC, and individual contributors
|
3
|
+
# by the @authors tag. See the copyright.txt in the distribution for a
|
4
|
+
# full listing of individual contributors.
|
5
|
+
#
|
6
|
+
# This is free software; you can redistribute it and/or modify it
|
7
|
+
# under the terms of the GNU Lesser General Public License as
|
8
|
+
# published by the Free Software Foundation; either version 2.1 of
|
9
|
+
# the License, or (at your option) any later version.
|
10
|
+
#
|
11
|
+
# This software is distributed in the hope that it will be useful,
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
# Lesser General Public License for more details.
|
15
|
+
#
|
16
|
+
# You should have received a copy of the GNU Lesser General Public
|
17
|
+
# License along with this software; if not, write to the Free
|
18
|
+
# Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
|
19
|
+
# 02110-1301 USA, or see the FSF site: http://www.fsf.org.
|
20
|
+
|
21
|
+
module BoxGrinder
|
22
|
+
AWS_DEFAULTS = {
|
23
|
+
:bucket_prefix => "#{DEFAULT_PROJECT_CONFIG[:name].downcase}/#{DEFAULT_PROJECT_CONFIG[:version]}-#{DEFAULT_PROJECT_CONFIG[:release]}",
|
24
|
+
:kernel_id => { "i386" => "aki-a71cf9ce", "x86_64" => "aki-b51cf9dc" }, # EU: :kernel_id => { "i386" => "aki-61022915", "x86_64" => "aki-6d022919" },
|
25
|
+
:ramdisk_id => { "i386" => "ari-a51cf9cc", "x86_64" => "ari-b31cf9da" }, # EU: :ramdisk_id => { "i386" => "ari-63022917", "x86_64" => "ari-37022943" },
|
26
|
+
:kernel_rpm => { "i386" => "http://repo.oddthesis.org/packages/other/kernel-xen-2.6.21.7-2.fc8.i686.rpm", "x86_64" => "http://repo.oddthesis.org/packages/other/kernel-xen-2.6.21.7-2.fc8.x86_64.rpm" },
|
27
|
+
:modules => { "i386" => "http://s3.amazonaws.com/ec2-downloads/ec2-modules-2.6.21.7-2.ec2.v1.2.fc8xen-i686.tgz", "x86_64" => "http://s3.amazonaws.com/ec2-downloads/ec2-modules-2.6.21.7-2.ec2.v1.2.fc8xen-x86_64.tgz" }
|
28
|
+
}
|
29
|
+
end
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 7
|
9
|
+
version: 0.0.7
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- BoxGrinder Project
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-03-
|
17
|
+
date: 2010-03-29 00:00:00 +02:00
|
18
18
|
default_executable:
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
@@ -113,6 +113,7 @@ files:
|
|
113
113
|
- lib/progressbar/progressbar.rb
|
114
114
|
- lib/boxgrinder-build.rb
|
115
115
|
- lib/boxgrinder-build/models/ssh-config.rb
|
116
|
+
- lib/boxgrinder-build/defaults.rb
|
116
117
|
- lib/boxgrinder-build/appliance-kickstart.rb
|
117
118
|
- lib/boxgrinder-build/validators/appliance-dependency-validator.rb
|
118
119
|
- lib/boxgrinder-build/validators/appliance-validator.rb
|