boxgrinder-ubuntu-plugin 0.2.1 → 0.2.2

Sign up to get free protection for your applications and to get access to all the features.
data/Changelog CHANGED
@@ -1,2 +1,5 @@
1
+ Wed Nov 16 11:44:19 CET 2011 - 0.2.2
2
+ * Enable universe,multiverse components when creating the appliance
3
+
1
4
  Tue Nov 15 10:53:00 CET 2011 - 0.2
2
5
  * Initial support for 'post:' in appliance definition file
data/README.md CHANGED
@@ -56,6 +56,15 @@ There's a sample appliance definition at:
56
56
 
57
57
  https://github.com/rubiojr/boxgrinder-appliances/tree/master/ubuntu-natty
58
58
 
59
+ ## DEV TIPS ##
60
+ Environment variables useful to debug the plugin:
61
+
62
+ * BOXGRINDER_DEBUG_NOCLEAN=1
63
+ Do not clean vmbuilder output.
64
+
65
+ * BOXGRINDER_DEBUG_VMBUILDER=1
66
+ Print all the output from vmbuilder while running.
67
+
59
68
  ## Caveats
60
69
 
61
70
  The Ubuntu plugin is still in alpha stage. If you find issues with it, please mailme, open an issue or submit a pull request ;)
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'rake'
6
6
  require 'jeweler'
7
7
  Jeweler::Tasks.new do |gem|
8
8
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
9
- gem.version = '0.2.1'
9
+ gem.version = '0.2.2'
10
10
  gem.name = "boxgrinder-ubuntu-plugin"
11
11
  gem.homepage = "http://github.com/rubiojr/boxgrinder-ubuntu-plugin"
12
12
  gem.license = "MIT"
@@ -83,7 +83,8 @@ module BoxGrinder
83
83
  else
84
84
  extra_args << '--quiet'
85
85
  end
86
-
86
+ extra_args << "--components=main,restricted,universe,multiverse"
87
+
87
88
  begin
88
89
  @exec_helper.execute "vmbuilder kvm ubuntu #{extra_args.join(' ')} --suite #{@appliance_config.os.version} #{pkgs.join(" ")} --arch #{arch} -t '#{@dir.tmp}' -d '#{@dir.base}/out' --mem #{@appliance_config.hardware.memory} --cpus #{@appliance_config.hardware.cpus}"
89
90
  #
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: boxgrinder-ubuntu-plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-15 00:00:00.000000000 Z
12
+ date: 2011-11-16 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Ubuntu OS boxgrinder plugin
15
15
  email: rubiojr@frameos.org