veewee 0.0.2
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.
- data/.gitignore +7 -0
- data/.rvmrc +2 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +53 -0
- data/README.md +124 -0
- data/Rakefile +92 -0
- data/bin/veewee +79 -0
- data/iso/.gitignore +2 -0
- data/lib/vagrant_init.rb +1 -0
- data/lib/veewee/command.rb +66 -0
- data/lib/veewee/config.rb +5 -0
- data/lib/veewee/export.rb +81 -0
- data/lib/veewee/scancode.rb +108 -0
- data/lib/veewee/session.rb +712 -0
- data/lib/veewee/shell.rb +54 -0
- data/lib/veewee/ssh.rb +164 -0
- data/lib/veewee/transaction.rb +112 -0
- data/lib/veewee/version.rb +3 -0
- data/lib/veewee/web.rb +48 -0
- data/lib/veewee.rb +2 -0
- data/templates/CentOS-4.8-i386/definition.rb +14 -0
- data/templates/CentOS-4.8-i386/ks.cfg +45 -0
- data/templates/CentOS-4.8-i386/postinstall.sh +47 -0
- data/templates/CentOS-5.5-i386/definition.rb +16 -0
- data/templates/CentOS-5.5-i386/ks.cfg +45 -0
- data/templates/CentOS-5.5-i386/postinstall.sh +48 -0
- data/templates/CentOS-5.5-i386-netboot/definition.rb +17 -0
- data/templates/CentOS-5.5-i386-netboot/ks.cfg +45 -0
- data/templates/CentOS-5.5-i386-netboot/postinstall.sh +48 -0
- data/templates/ubuntu-10.04.1-server-amd64/definition.rb +25 -0
- data/templates/ubuntu-10.04.1-server-amd64/postinstall.sh +33 -0
- data/templates/ubuntu-10.04.1-server-amd64/preseed.cfg +87 -0
- data/templates/ubuntu-10.04.1-server-i386/definition.rb +25 -0
- data/templates/ubuntu-10.04.1-server-i386/postinstall.sh +43 -0
- data/templates/ubuntu-10.04.1-server-i386/postinstall2.sh +9 -0
- data/templates/ubuntu-10.04.1-server-i386/preseed.cfg +87 -0
- data/templates/ubuntu-10.10-server-amd64/definition.rb +25 -0
- data/templates/ubuntu-10.10-server-amd64/postinstall.sh +43 -0
- data/templates/ubuntu-10.10-server-amd64/postinstall2.sh +9 -0
- data/templates/ubuntu-10.10-server-amd64/preseed.cfg +87 -0
- data/templates/ubuntu-10.10-server-i386/definition.rb +25 -0
- data/templates/ubuntu-10.10-server-i386/postinstall.sh +43 -0
- data/templates/ubuntu-10.10-server-i386/postinstall2.sh +9 -0
- data/templates/ubuntu-10.10-server-i386/preseed.cfg +87 -0
- data/trials/docu-vbox.txt +83 -0
- data/trials/f.rb +29 -0
- data/trials/t.rb +15 -0
- data/veewee.gemspec +30 -0
- metadata +219 -0
@@ -0,0 +1,87 @@
|
|
1
|
+
## Options to set on the command line
|
2
|
+
d-i debian-installer/locale string en_US
|
3
|
+
d-i console-setup/ask_detect boolean false
|
4
|
+
d-i console-setup/layout string Belgium
|
5
|
+
|
6
|
+
#d-i netcfg/get_hostname string dummy
|
7
|
+
d-i netcfg/get_hostname string unassigned-hostname
|
8
|
+
d-i netcfg/get_domain string unassigned-domain
|
9
|
+
|
10
|
+
# Continue without a default route
|
11
|
+
# Not working , specify a dummy in the DHCP
|
12
|
+
#d-i netcfg/no_default_route boolean
|
13
|
+
|
14
|
+
d-i time/zone string Europe/Brussels
|
15
|
+
d-i clock-setup/utc-auto boolean true
|
16
|
+
d-i clock-setup/utc boolean true
|
17
|
+
|
18
|
+
d-i kbd-chooser/method select Belgian
|
19
|
+
|
20
|
+
d-i netcfg/wireless_wep string
|
21
|
+
|
22
|
+
d-i base-installer/kernel/override-image string linux-server
|
23
|
+
#d-i base-installer/kernel/override-image string linux-image-2.6.32-21-generic
|
24
|
+
|
25
|
+
# Choices: Dialog, Readline, Gnome, Kde, Editor, Noninteractive
|
26
|
+
d-i debconf debconf/frontend select Noninteractive
|
27
|
+
|
28
|
+
d-i pkgsel/install-language-support boolean false
|
29
|
+
tasksel tasksel/first multiselect standard, ubuntu-server
|
30
|
+
|
31
|
+
#d-i partman-auto/method string regular
|
32
|
+
d-i partman-auto/method string lvm
|
33
|
+
#d-i partman-auto/purge_lvm_from_device boolean true
|
34
|
+
|
35
|
+
d-i partman-lvm/confirm boolean true
|
36
|
+
d-i partman-lvm/device_remove_lvm boolean true
|
37
|
+
d-i partman-auto/choose_recipe select atomic
|
38
|
+
|
39
|
+
d-i partman/confirm_write_new_label boolean true
|
40
|
+
d-i partman/confirm_nooverwrite boolean true
|
41
|
+
d-i partman/choose_partition select finish
|
42
|
+
d-i partman/confirm boolean true
|
43
|
+
|
44
|
+
#http://ubuntu-virginia.ubuntuforums.org/showthread.php?p=9626883
|
45
|
+
#Message: "write the changes to disk and configure lvm preseed"
|
46
|
+
#http://serverfault.com/questions/189328/ubuntu-kickstart-installation-using-lvm-waits-for-input
|
47
|
+
#preseed partman-lvm/confirm_nooverwrite boolean true
|
48
|
+
|
49
|
+
# Write the changes to disks and configure LVM?
|
50
|
+
d-i partman-lvm/confirm boolean true
|
51
|
+
d-i partman-lvm/confirm_nooverwrite boolean true
|
52
|
+
d-i partman-auto-lvm/guided_size string max
|
53
|
+
|
54
|
+
## Default user, we can get away with a recipe to change this
|
55
|
+
d-i passwd/user-fullname string vagrant
|
56
|
+
d-i passwd/username string vagrant
|
57
|
+
d-i passwd/user-password password vagrant
|
58
|
+
d-i passwd/user-password-again password vagrant
|
59
|
+
d-i user-setup/encrypt-home boolean false
|
60
|
+
d-i user-setup/allow-password-weak boolean true
|
61
|
+
|
62
|
+
## minimum is puppet and ssh and ntp
|
63
|
+
# Individual additional packages to install
|
64
|
+
d-i pkgsel/include string openssh-server ntp
|
65
|
+
|
66
|
+
# Whether to upgrade packages after debootstrap.
|
67
|
+
# Allowed values: none, safe-upgrade, full-upgrade
|
68
|
+
d-i pkgsel/upgrade select none
|
69
|
+
|
70
|
+
d-i grub-installer/only_debian boolean true
|
71
|
+
d-i grub-installer/with_other_os boolean true
|
72
|
+
d-i finish-install/reboot_in_progress note
|
73
|
+
|
74
|
+
#For the update
|
75
|
+
d-i pkgsel/update-policy select none
|
76
|
+
|
77
|
+
# debconf-get-selections --install
|
78
|
+
#Use mirror
|
79
|
+
#d-i apt-setup/use_mirror boolean true
|
80
|
+
#d-i mirror/country string manual
|
81
|
+
#choose-mirror-bin mirror/protocol string http
|
82
|
+
#choose-mirror-bin mirror/http/hostname string 192.168.4.150
|
83
|
+
#choose-mirror-bin mirror/http/directory string /ubuntu
|
84
|
+
#choose-mirror-bin mirror/suite select maverick
|
85
|
+
#d-i debian-installer/allow_unauthenticated string true
|
86
|
+
|
87
|
+
choose-mirror-bin mirror/http/proxy string
|
@@ -0,0 +1,83 @@
|
|
1
|
+
>> vm.interface.methods
|
2
|
+
=> ["teleporter_password", "get_guest_property_value", "pointing_hid_type=", "call_function", "get_serial_port", "teleporter_password=", "current_snapshot", "vram_size", "get_cpu_status", "methods", "send", "delete_settings", "settings_modified", "members", "access_error", "keyboard_hid_type", "vram_size=", "taint", "get_cpu_id_leaf", "instance_variable_defined?", "set_boot_order", "medium_attachments", "get_guest_property_timestamp", "keyboard_hid_type=", "state", "snapshot_count", "accelerate_3d_enabled", "query_log_filename", "singleton_methods", "instance_eval", "export", "get_medium_attachment", "session_state", "accelerate_3d_enabled=", "set_cpu_id_leaf", "hpet_enabled", "nil?", "get_boot_order", "memory_size", "set_guest_property", "read_property", "get_parallel_port", "hpet_enabled=", "current_state_modified", "protected_methods", "instance_exec", "get_snapshot", "display", "memory_size=", "accelerate_2d_video_enabled", "read_log", "tainted?", "method", "get_network_adapter", "untaint", "remove_cpu_id_leaf", "instance_of?", "os_type_id", "rtc_use_utc", "accelerate_2d_video_enabled=", "attach_device", "equal?", "name", "set_guest_propetty_value", "usb_controller", "os_type_id=", "rtc_use_utc=", "write_property", "clipboard_mode", "hash", "name=", "private_methods", "find_snapshot", "monitor_count", "clipboard_mode=", "session_type", "kind_of?", "hardware_version", "io_cache_enabled", "monitor_count=", "freeze", "remove_all_cpu_id_leafs", "detach_device", "eql?", "enumerate_guest_properties", "hardware_version=", "io_cache_enabled=", "id", "get_extra_data_keys", "guest_property_notification_patterns", "bios_settings", "public_methods", "set_current_snapshot", "implementer", "add_storage_controller", "has_function?", "session_pid", "object_id", "guest_property_notification_patterns=", "is_a?", "hardware_uuid", "io_cache_size", "get_hw_virt_ex_property", "passthrough_device", "query_saved_thumbnail_size", "audio_adapter", "tap", "hardware_uuid=", "io_cache_size=", "member", "type", "get_extra_data", "teleporter_enabled", "firmware_type", "instance_variables", "can_show_console_window", "__id__", "lib", "get_storage_controller_by_name", "has_property?", "frozen?", "last_state_change", "to_enum", "teleporter_enabled=", "io_bandwidth_max", "firmware_type=", "to_a", "set_hw_virt_ex_property", "cpu_count", "respond_to?", "mount_medium", "storage_controllers", "read_saved_thumbnail_to_array", "class", "set_extra_data", "cpu_hot_plug_enabled", "cpu_count=", "io_bandwidth_max=", "teleporter_port", "snapshot_folder", "instance_variable_get", "show_console_window", "==", "cpu_hot_plug_enabled=", "__send__", "get_storage_controller_by_instance", "===", "create_shared_folder", "state_file_path", "enum_for", "teleporter_port=", "extend", "to_s", "save_settings", "memory_balloon_size", "hot_plug_cpu", "snapshot_folder=", "get_medium", "query_saved_screenshot_png_size", "parent", "page_fusion_enabled", "memory_balloon_size=", "clone", "get_cpu_property", "teleporter_address", "=~", "instance_variable_set", "get_guest_property", "vrdp_server", "page_fusion_enabled=", "remove_storage_controller", "remove_shared_folder", "log_folder", "teleporter_address=", "discard_settings", "shared_folders", "hot_unplug_cpu", "description", "inspect", "get_medium_attachments_of_controller", "read_saved_png_screenshot_to_array", "settings_file_path", "accessible", "pointing_hid_type", "dup", "set_cpu_property", "description="]
|
3
|
+
|
4
|
+
|
5
|
+
patricks-iMac:virtualbox-0.7.5 patrick$ vi lib/virtualbox/com/ffi/interfaces.rb
|
6
|
+
create_interface(:Keyboard, :NSISupports)
|
7
|
+
|
8
|
+
|
9
|
+
|
10
|
+
#http://www.virtualbox.org/sdkref/_virtual_box_8idl-source.html
|
11
|
+
#http://www.virtualbox.org/sdkref/interface_i_keyboard.html
|
12
|
+
|
13
|
+
|
14
|
+
vi lib/virtualbox/com/interface/3.2.x/keyboard.rb
|
15
|
+
|
16
|
+
module VirtualBox
|
17
|
+
module COM
|
18
|
+
module Interface
|
19
|
+
module Version_3_2_X
|
20
|
+
class Keyboard < AbstractInterface
|
21
|
+
IID = "2D1A531B-4C6E-49CC-8AF6-5C857B78B5D7"
|
22
|
+
|
23
|
+
function :put_cad, nil, []
|
24
|
+
function :put_scancode, nil, [T_INT64]
|
25
|
+
function :put_scancodes, nil, [ [:scancode,T_INT64], T_UINT64 ]
|
26
|
+
|
27
|
+
#function :detach_usb_device, :USBDevice, [WSTRING]
|
28
|
+
#function :find_usb_device_by_address, :USBDevice, [WSTRING]
|
29
|
+
#function :find_usb_device_by_id, :USBDevice, [WSTRING]
|
30
|
+
#function :create_shared_folder, nil, [WSTRING, WSTRING, T_BOOL]
|
31
|
+
#function :remove_shared_folder, nil, [WSTRING]
|
32
|
+
#function :take_snapshot, :Progress, [WSTRING, WSTRING]
|
33
|
+
#function :delete_snapshot, :Progress, [WSTRING]
|
34
|
+
#function :restore_snapshot, :Progress, [:Snapshot]
|
35
|
+
#function :teleport, :Progress, [WSTRING, T_UINT32, WSTRING, T_UINT32]
|
36
|
+
#function :register_callback, nil, [:ConsoleCallback]
|
37
|
+
#function :unregister_callback, nil, [:ConsoleCallback]
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
>> session=VirtualBox::Lib.lib.session
|
48
|
+
=> #<VirtualBox::COM::Interface::Version_3_2_X::Session>
|
49
|
+
>> session.state
|
50
|
+
get_state
|
51
|
+
[#<FFI::MemoryPointer address=0x101712bf0 size=8>]
|
52
|
+
FFI call: get_state [] [#<FFI::MemoryPointer address=0x101712bf0 size=8>]0
|
53
|
+
=> :closed
|
54
|
+
|
55
|
+
|
56
|
+
vm.interface.parent.open_remote_session(session,"c5429061-8f1c-4a9d-aea6-0d2d6a4a4ebc","gui","")
|
57
|
+
|
58
|
+
|
59
|
+
VirtualBox::Exceptions::FFIException: Error in API call to open_session: 2147942487
|
60
|
+
from /Users/patrick/veewee/gems/gems/virtualbox-0.7.5/lib/virtualbox/com/implementer/ffi.rb:99:in `call_and_check'
|
61
|
+
from /Users/patrick/veewee/gems/gems/virtualbox-0.7.5/lib/virtualbox/com/implementer/ffi.rb:72:in `call_vtbl_function'
|
62
|
+
from /Users/patrick/veewee/gems/gems/virtualbox-0.7.5/lib/virtualbox/com/implementer/ffi.rb:51:in `call_function'
|
63
|
+
from /Users/patrick/veewee/gems/gems/virtualbox-0.7.5/lib/virtualbox/com/abstract_interface.rb:135:in `call_function'
|
64
|
+
from /Users/patrick/veewee/gems/gems/virtualbox-0.7.5/lib/virtualbox/com/abstract_interface.rb:51:in `open_session'
|
65
|
+
from (irb):33
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
BUG
|
70
|
+
https://github.com/mitchellh/virtualbox/issuesearch?state=closed&q=session#issue/25
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
***open_remote_session****
|
75
|
+
open_remote_session
|
76
|
+
open_remote_session
|
77
|
+
[#<VirtualBox::COM::FFI::Version_3_2_X::Session::VtblParent:0x1015ab4a8>,
|
78
|
+
#<FFI::Pointer address=0x102b1e9e0>,
|
79
|
+
#<FFI::Pointer address=0x102b44f20>,
|
80
|
+
#<FFI::Pointer address=0x102b1fb20>,
|
81
|
+
#<FFI::MemoryPointer address=0x102b18720 size=8>]
|
82
|
+
FFI call: open_remote_session [#<VirtualBox::COM::Interface::Version_3_2_X::Session>, "c5429061-8f1c-4a9d-aea6-0d2d6a4a4ebc", "gui", ""] [#<VirtualBox::COM::FFI::Version_3_2_X::Session::VtblParent:0x1015ab4a8>, #<FFI::Pointer address=0x102b1e9e0>, #<FFI::Pointer address=0x102b44f20>, #<FFI::Pointer address=0x102b1fb20>, #<FFI::MemoryPointer address=0x102b18720 size=8>]0
|
83
|
+
|
data/trials/f.rb
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
##
|
3
|
+
## mysql-replication.rb
|
4
|
+
##
|
5
|
+
## This script uses facter to setup mysql replication based upon the
|
6
|
+
#facts mysql_master and mysql_repl_dbs
|
7
|
+
##
|
8
|
+
## It is currently in beta
|
9
|
+
##
|
10
|
+
#
|
11
|
+
## 1) Require the relevant libraries
|
12
|
+
require 'rubygems'
|
13
|
+
require 'facter'
|
14
|
+
#
|
15
|
+
## 2) Get the relevant facts and echo them to the screen
|
16
|
+
puts "Getting facts"
|
17
|
+
#begin
|
18
|
+
Facter.loadfacts()
|
19
|
+
puts "Facts received"
|
20
|
+
puts Facter.ipaddress
|
21
|
+
#rescue
|
22
|
+
# Facter.loadfacts()
|
23
|
+
# puts "running rescue"
|
24
|
+
#end
|
25
|
+
|
26
|
+
# mysql_master = Facter.value('mysql_master')
|
27
|
+
# mysql_repl_dbs = Facter.value('mysql_master')
|
28
|
+
#
|
29
|
+
# puts "Master Server: #{mysql_master}\nDatabases: #{mysql_repl_dbs}"
|
data/trials/t.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'pp'
|
3
|
+
require 'virtualbox'
|
4
|
+
vm=VirtualBox::VM.find("blub")
|
5
|
+
#vm.start
|
6
|
+
vm.state
|
7
|
+
#session = VirtualBox::Lib.lib.session
|
8
|
+
|
9
|
+
vm.with_open_session do |session|
|
10
|
+
pp session
|
11
|
+
pp session.console
|
12
|
+
pp session.console.keyboard
|
13
|
+
pp session.console.keyboard.methods
|
14
|
+
session.console.keyboard.put_scancode(20)
|
15
|
+
end
|
data/veewee.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path("../lib/veewee/version", __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |s|
|
5
|
+
s.name = "veewee"
|
6
|
+
s.version = Veewee::VERSION
|
7
|
+
s.platform = Gem::Platform::RUBY
|
8
|
+
s.authors = ["Patrick Debois", "Ringo De Smet"]
|
9
|
+
s.email = ["patrick.debois@jedi.be", "ringo.desmet@gmail.com"]
|
10
|
+
s.homepage = "http://github.com/jedi4ever/veewee/"
|
11
|
+
s.summary = %q{Vagrant box creation}
|
12
|
+
s.description = %q{Expand the 'vagrant box' command to support the creation of base boxes from scratch}
|
13
|
+
|
14
|
+
s.required_rubygems_version = ">= 1.3.6"
|
15
|
+
s.rubyforge_project = "veewee"
|
16
|
+
|
17
|
+
s.add_dependency "vagrant", "~> 0.7.0"
|
18
|
+
s.add_dependency "net-ssh", "~> 2.1.0"
|
19
|
+
s.add_dependency "popen4", "~> 0.1.2"
|
20
|
+
s.add_dependency "thor", "~> 0.14.6"
|
21
|
+
s.add_dependency "highline", "~> 1.6.1"
|
22
|
+
s.add_dependency "progressbar"
|
23
|
+
|
24
|
+
s.add_development_dependency "bundler", ">= 1.0.0"
|
25
|
+
|
26
|
+
s.files = `git ls-files`.split("\n")
|
27
|
+
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
28
|
+
s.require_path = 'lib'
|
29
|
+
end
|
30
|
+
|
metadata
ADDED
@@ -0,0 +1,219 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: veewee
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 2
|
9
|
+
version: 0.0.2
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Patrick Debois
|
13
|
+
- Ringo De Smet
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2011-02-07 00:00:00 +01:00
|
19
|
+
default_executable:
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: vagrant
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
none: false
|
25
|
+
requirements:
|
26
|
+
- - ~>
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
segments:
|
29
|
+
- 0
|
30
|
+
- 7
|
31
|
+
- 0
|
32
|
+
version: 0.7.0
|
33
|
+
type: :runtime
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *id001
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: net-ssh
|
38
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ~>
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
segments:
|
44
|
+
- 2
|
45
|
+
- 1
|
46
|
+
- 0
|
47
|
+
version: 2.1.0
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: *id002
|
51
|
+
- !ruby/object:Gem::Dependency
|
52
|
+
name: popen4
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
54
|
+
none: false
|
55
|
+
requirements:
|
56
|
+
- - ~>
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
- 1
|
61
|
+
- 2
|
62
|
+
version: 0.1.2
|
63
|
+
type: :runtime
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: *id003
|
66
|
+
- !ruby/object:Gem::Dependency
|
67
|
+
name: thor
|
68
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ~>
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
- 14
|
76
|
+
- 6
|
77
|
+
version: 0.14.6
|
78
|
+
type: :runtime
|
79
|
+
prerelease: false
|
80
|
+
version_requirements: *id004
|
81
|
+
- !ruby/object:Gem::Dependency
|
82
|
+
name: highline
|
83
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ~>
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
segments:
|
89
|
+
- 1
|
90
|
+
- 6
|
91
|
+
- 1
|
92
|
+
version: 1.6.1
|
93
|
+
type: :runtime
|
94
|
+
prerelease: false
|
95
|
+
version_requirements: *id005
|
96
|
+
- !ruby/object:Gem::Dependency
|
97
|
+
name: progressbar
|
98
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
99
|
+
none: false
|
100
|
+
requirements:
|
101
|
+
- - ">="
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
segments:
|
104
|
+
- 0
|
105
|
+
version: "0"
|
106
|
+
type: :runtime
|
107
|
+
prerelease: false
|
108
|
+
version_requirements: *id006
|
109
|
+
- !ruby/object:Gem::Dependency
|
110
|
+
name: bundler
|
111
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
112
|
+
none: false
|
113
|
+
requirements:
|
114
|
+
- - ">="
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
segments:
|
117
|
+
- 1
|
118
|
+
- 0
|
119
|
+
- 0
|
120
|
+
version: 1.0.0
|
121
|
+
type: :development
|
122
|
+
prerelease: false
|
123
|
+
version_requirements: *id007
|
124
|
+
description: Expand the 'vagrant box' command to support the creation of base boxes from scratch
|
125
|
+
email:
|
126
|
+
- patrick.debois@jedi.be
|
127
|
+
- ringo.desmet@gmail.com
|
128
|
+
executables:
|
129
|
+
- veewee
|
130
|
+
extensions: []
|
131
|
+
|
132
|
+
extra_rdoc_files: []
|
133
|
+
|
134
|
+
files:
|
135
|
+
- .gitignore
|
136
|
+
- .rvmrc
|
137
|
+
- Gemfile
|
138
|
+
- Gemfile.lock
|
139
|
+
- README.md
|
140
|
+
- Rakefile
|
141
|
+
- bin/veewee
|
142
|
+
- iso/.gitignore
|
143
|
+
- lib/vagrant_init.rb
|
144
|
+
- lib/veewee.rb
|
145
|
+
- lib/veewee/command.rb
|
146
|
+
- lib/veewee/config.rb
|
147
|
+
- lib/veewee/export.rb
|
148
|
+
- lib/veewee/scancode.rb
|
149
|
+
- lib/veewee/session.rb
|
150
|
+
- lib/veewee/shell.rb
|
151
|
+
- lib/veewee/ssh.rb
|
152
|
+
- lib/veewee/transaction.rb
|
153
|
+
- lib/veewee/version.rb
|
154
|
+
- lib/veewee/web.rb
|
155
|
+
- templates/CentOS-4.8-i386/definition.rb
|
156
|
+
- templates/CentOS-4.8-i386/ks.cfg
|
157
|
+
- templates/CentOS-4.8-i386/postinstall.sh
|
158
|
+
- templates/CentOS-5.5-i386-netboot/definition.rb
|
159
|
+
- templates/CentOS-5.5-i386-netboot/ks.cfg
|
160
|
+
- templates/CentOS-5.5-i386-netboot/postinstall.sh
|
161
|
+
- templates/CentOS-5.5-i386/definition.rb
|
162
|
+
- templates/CentOS-5.5-i386/ks.cfg
|
163
|
+
- templates/CentOS-5.5-i386/postinstall.sh
|
164
|
+
- templates/ubuntu-10.04.1-server-amd64/definition.rb
|
165
|
+
- templates/ubuntu-10.04.1-server-amd64/postinstall.sh
|
166
|
+
- templates/ubuntu-10.04.1-server-amd64/preseed.cfg
|
167
|
+
- templates/ubuntu-10.04.1-server-i386/definition.rb
|
168
|
+
- templates/ubuntu-10.04.1-server-i386/postinstall.sh
|
169
|
+
- templates/ubuntu-10.04.1-server-i386/postinstall2.sh
|
170
|
+
- templates/ubuntu-10.04.1-server-i386/preseed.cfg
|
171
|
+
- templates/ubuntu-10.10-server-amd64/definition.rb
|
172
|
+
- templates/ubuntu-10.10-server-amd64/postinstall.sh
|
173
|
+
- templates/ubuntu-10.10-server-amd64/postinstall2.sh
|
174
|
+
- templates/ubuntu-10.10-server-amd64/preseed.cfg
|
175
|
+
- templates/ubuntu-10.10-server-i386/definition.rb
|
176
|
+
- templates/ubuntu-10.10-server-i386/postinstall.sh
|
177
|
+
- templates/ubuntu-10.10-server-i386/postinstall2.sh
|
178
|
+
- templates/ubuntu-10.10-server-i386/preseed.cfg
|
179
|
+
- trials/docu-vbox.txt
|
180
|
+
- trials/f.rb
|
181
|
+
- trials/t.rb
|
182
|
+
- veewee.gemspec
|
183
|
+
has_rdoc: true
|
184
|
+
homepage: http://github.com/jedi4ever/veewee/
|
185
|
+
licenses: []
|
186
|
+
|
187
|
+
post_install_message:
|
188
|
+
rdoc_options: []
|
189
|
+
|
190
|
+
require_paths:
|
191
|
+
- lib
|
192
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
193
|
+
none: false
|
194
|
+
requirements:
|
195
|
+
- - ">="
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
hash: 1789913568085881237
|
198
|
+
segments:
|
199
|
+
- 0
|
200
|
+
version: "0"
|
201
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
202
|
+
none: false
|
203
|
+
requirements:
|
204
|
+
- - ">="
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
segments:
|
207
|
+
- 1
|
208
|
+
- 3
|
209
|
+
- 6
|
210
|
+
version: 1.3.6
|
211
|
+
requirements: []
|
212
|
+
|
213
|
+
rubyforge_project: veewee
|
214
|
+
rubygems_version: 1.3.7
|
215
|
+
signing_key:
|
216
|
+
specification_version: 3
|
217
|
+
summary: Vagrant box creation
|
218
|
+
test_files: []
|
219
|
+
|