veewee 0.2.3 → 0.3.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +3 -0
- data/Gemfile +1 -2
- data/Gemfile.lock +53 -30
- data/License +21 -0
- data/README-LIB.md +2 -0
- data/README.md +35 -62
- data/Rakefile +54 -88
- data/bin/veewee +13 -70
- data/bin/veewee-kvm-old +34 -0
- data/bin/veewee-vagrant +55 -0
- data/bin/veewee-vmfusion +34 -0
- data/lib/fission.rb +41 -0
- data/lib/fission/cli.rb +76 -0
- data/lib/fission/command.rb +15 -0
- data/lib/fission/command/clone.rb +68 -0
- data/lib/fission/command/delete.rb +71 -0
- data/lib/fission/command/snapshot_create.rb +52 -0
- data/lib/fission/command/snapshot_list.rb +45 -0
- data/lib/fission/command/snapshot_revert.rb +54 -0
- data/lib/fission/command/start.rb +69 -0
- data/lib/fission/command/status.rb +31 -0
- data/lib/fission/command/stop.rb +49 -0
- data/lib/fission/command/suspend.rb +67 -0
- data/lib/fission/config.rb +29 -0
- data/lib/fission/core_ext/class.rb +5 -0
- data/lib/fission/core_ext/file.rb +7 -0
- data/lib/fission/core_ext/object.rb +112 -0
- data/lib/fission/error.rb +9 -0
- data/lib/fission/fusion.rb +17 -0
- data/lib/fission/leasesfile.rb +74 -0
- data/lib/fission/metadata.rb +39 -0
- data/lib/fission/response.rb +16 -0
- data/lib/fission/ui.rb +22 -0
- data/lib/fission/version.rb +3 -0
- data/lib/fission/vm.rb +361 -0
- data/lib/net/vnc/vnc.rb +341 -0
- data/lib/vagrant_init.rb +5 -2
- data/lib/veewee.rb +20 -3
- data/lib/veewee/builder/core/box.rb +32 -0
- data/lib/veewee/builder/core/box/vnc.rb +122 -0
- data/lib/veewee/builder/core/builder.rb +90 -0
- data/lib/veewee/builder/core/builder/build.rb +250 -0
- data/lib/veewee/builder/core/builder/iso.rb +120 -0
- data/lib/veewee/builder/core/builder/transaction.rb +25 -0
- data/lib/veewee/builder/core/builder/tunnel.rb +46 -0
- data/lib/veewee/builder/kvm/box.rb +130 -0
- data/lib/veewee/builder/kvm/builder.rb +38 -0
- data/lib/veewee/builder/virtualbox/box.rb +121 -0
- data/lib/veewee/builder/virtualbox/builder.rb +48 -0
- data/lib/veewee/builder/virtualbox/helper/_snapshots.rb +105 -0
- data/lib/veewee/builder/virtualbox/helper/_transaction.rb +135 -0
- data/lib/veewee/builder/virtualbox/helper/console_type.rb +62 -0
- data/lib/veewee/builder/virtualbox/helper/create.rb +210 -0
- data/lib/veewee/builder/virtualbox/helper/destroy.rb +79 -0
- data/lib/veewee/builder/virtualbox/helper/export_vagrant.rb +87 -0
- data/lib/veewee/builder/virtualbox/helper/validate_vagrant.rb +35 -0
- data/lib/veewee/builder/vmfusion/box.rb +137 -0
- data/lib/veewee/builder/vmfusion/builder.rb +78 -0
- data/lib/veewee/builder/vmfusion/helper/create.rb +68 -0
- data/lib/veewee/builder/vmfusion/helper/export_ova.rb +26 -0
- data/lib/veewee/builder/vmfusion/helper/template.rb +39 -0
- data/lib/veewee/builder/vmfusion/helper/template.vmx.erb +81 -0
- data/lib/veewee/builder/vmfusion/helper/validate_vmfusion.rb +37 -0
- data/lib/veewee/builder/vmfusion/info/export_ovf.info +103 -0
- data/lib/veewee/cli.rb +55 -0
- data/lib/veewee/command.rb +10 -20
- data/lib/veewee/command/base.rb +106 -0
- data/lib/veewee/command/group_base.rb +107 -0
- data/lib/veewee/command/helpers.rb +13 -0
- data/lib/veewee/command/kvm.rb +85 -0
- data/lib/veewee/command/named_base.rb +14 -0
- data/lib/veewee/command/vagrant.rb +108 -0
- data/lib/veewee/command/version.rb +13 -0
- data/lib/veewee/command/virtualbox.rb +86 -0
- data/lib/veewee/command/vmfusion.rb +113 -0
- data/lib/veewee/config.rb +89 -3
- data/lib/veewee/config/builders.rb +36 -0
- data/lib/veewee/config/collection.rb +82 -0
- data/lib/veewee/config/component.rb +19 -0
- data/lib/veewee/config/definition.rb +44 -0
- data/lib/veewee/config/ostypes.yml +165 -0
- data/lib/veewee/config/veewee.rb +21 -0
- data/lib/veewee/definition.rb +130 -0
- data/lib/veewee/environment.rb +367 -0
- data/lib/veewee/error.rb +20 -0
- data/lib/veewee/templates/locales/en.yml +30 -0
- data/lib/veewee/ui.rb +83 -0
- data/lib/veewee/util/scancode.rb +112 -0
- data/lib/veewee/util/shell.rb +42 -0
- data/lib/veewee/util/ssh.rb +158 -0
- data/lib/veewee/util/tcp.rb +88 -0
- data/lib/veewee/util/web.rb +63 -0
- data/lib/veewee/vagrant/config.rb +7 -0
- data/lib/veewee/version.rb +6 -1
- data/templates/CentOS-4.8-i386/definition.rb +3 -3
- data/templates/CentOS-4.8-i386/postinstall.sh +2 -2
- data/templates/CentOS-5.5-x86_64-netboot/definition.rb +1 -1
- data/templates/CentOS-5.5-x86_64-netboot/postinstall.sh +1 -1
- data/templates/CentOS-5.6-i386-netboot/definition.rb +3 -3
- data/templates/CentOS-5.6-i386-netboot/ks.cfg +2 -2
- data/templates/CentOS-5.6-i386-netboot/postinstall.sh +2 -2
- data/templates/CentOS-5.6-i386/definition.rb +2 -2
- data/templates/CentOS-5.6-i386/postinstall.sh +2 -2
- data/templates/CentOS-5.6-x86_64-netboot/definition.rb +3 -3
- data/templates/CentOS-5.6-x86_64-netboot/ks.cfg +1 -1
- data/templates/CentOS-5.6-x86_64-netboot/postinstall.sh +1 -1
- data/templates/CentOS-5.7-i386-netboot/postinstall.sh +3 -3
- data/templates/CentOS-5.7-x86_64-netboot/postinstall.sh +1 -1
- data/templates/CentOS-6.0-i386-netboot/definition.rb +2 -2
- data/templates/CentOS-6.0-i386-netboot/postinstall.sh +2 -2
- data/templates/CentOS-6.0-i386/definition.rb +2 -2
- data/templates/CentOS-6.0-i386/postinstall.sh +2 -2
- data/templates/CentOS-6.0-x86_64-minimal/definition.rb +2 -2
- data/templates/CentOS-6.0-x86_64-minimal/postinstall.sh +4 -17
- data/templates/CentOS-6.0-x86_64-netboot/definition.rb +2 -2
- data/templates/CentOS-6.0-x86_64-netboot/postinstall.sh +2 -2
- data/templates/CentOS-6.0-x86_64/definition.rb +2 -2
- data/templates/CentOS-6.0-x86_64/postinstall.sh +2 -2
- data/templates/Debian-5.0.8-amd64-netboot/definition.rb +1 -1
- data/templates/Debian-5.0.8-amd64-netboot/postinstall.sh +1 -1
- data/templates/Debian-5.0.8-i386-netboot/definition.rb +1 -1
- data/templates/Debian-5.0.8-i386-netboot/postinstall.sh +1 -1
- data/templates/{Debian-6.0.3-amd64-netboot → Debian-6.0.2-amd64-netboot}/definition.rb +4 -4
- data/templates/{ubuntu-11.10-server-amd64-ishaya → Debian-6.0.2-amd64-netboot}/postinstall.sh +23 -42
- data/templates/{Debian-6.0.3-amd64-netboot → Debian-6.0.2-amd64-netboot}/preseed.cfg +0 -0
- data/templates/{Debian-6.0.3-i386-netboot → Debian-6.0.2-i386-netboot}/definition.rb +4 -4
- data/templates/{Debian-6.0.3-i386-netboot → Debian-6.0.2-i386-netboot}/postinstall.sh +1 -1
- data/templates/{Debian-6.0.3-i386-netboot → Debian-6.0.2-i386-netboot}/preseed.cfg +0 -0
- data/templates/Fedora-14-amd64-netboot/definition.rb +2 -2
- data/templates/Fedora-14-amd64-netboot/postinstall.sh +2 -2
- data/templates/Fedora-14-amd64/definition.rb +2 -2
- data/templates/Fedora-14-amd64/postinstall.sh +2 -2
- data/templates/Fedora-14-i386-netboot/definition.rb +2 -2
- data/templates/Fedora-14-i386-netboot/postinstall.sh +2 -2
- data/templates/Fedora-14-i386/definition.rb +2 -2
- data/templates/Fedora-14-i386/postinstall.sh +2 -2
- data/templates/Fedora-15-i386-netboot/definition.rb +2 -2
- data/templates/Fedora-15-i386/definition.rb +3 -3
- data/templates/Sysrescuecd-2.0.0-experimental/definition.rb +1 -1
- data/templates/archlinux-i386-netboot/aif.cfg +14 -8
- data/templates/archlinux-i386-netboot/definition.rb +7 -4
- data/templates/archlinux-i386-netboot/postinstall.sh +17 -5
- data/templates/archlinux-i386-netboot/postinstall2.sh +1 -3
- data/templates/archlinux-i386/definition.rb +4 -4
- data/templates/archlinux-i386/postinstall.sh +1 -1
- data/templates/archlinux-x86_64-netboot/aif.cfg +14 -8
- data/templates/archlinux-x86_64-netboot/definition.rb +7 -4
- data/templates/archlinux-x86_64-netboot/postinstall.sh +16 -1
- data/templates/archlinux-x86_64-netboot/postinstall2.sh +1 -3
- data/templates/archlinux-x86_64/definition.rb +2 -2
- data/templates/archlinux-x86_64/postinstall.sh +1 -1
- data/templates/freebsd-8.2-experimental/definition.rb +1 -1
- data/templates/freebsd-8.2-pcbsd-i386-netboot/definition.rb +2 -5
- data/templates/freebsd-8.2-pcbsd-i386-netboot/postinstall.sh +1 -1
- data/templates/freebsd-8.2-pcbsd-i386/definition.rb +3 -4
- data/templates/freebsd-8.2-pcbsd-i386/postinstall.sh +1 -1
- data/templates/gentoo-latest-i386-experimental/definition.rb +7 -7
- data/templates/gentoo-latest-i386-experimental/postinstall.sh +1 -1
- data/templates/openSUSE-11.4-DVD-i586/postinstall.sh +1 -1
- data/templates/openSUSE-11.4-DVD-x86_64/postinstall.sh +1 -1
- data/templates/openSUSE-11.4-NET-i586/postinstall.sh +1 -1
- data/templates/openSUSE-11.4-NET-x86_64/postinstall.sh +1 -1
- data/templates/openindiana-148-ai-x86/definition.rb +3 -3
- data/templates/openindiana-148-ai-x86/postinstall.sh +1 -1
- data/templates/opensuse-11.4-i386-experimental/definition.rb +1 -1
- data/templates/opensuse-11.4-i386-experimental/postinstall.sh +1 -1
- data/templates/solaris-11-express-i386/definition.rb +3 -3
- data/templates/solaris-11-express-i386/postinstall.sh +1 -1
- data/templates/ubuntu-10.04.2-amd64-netboot/definition.rb +1 -1
- data/templates/ubuntu-10.04.2-amd64-netboot/postinstall.sh +1 -1
- data/templates/ubuntu-10.04.2-server-i386-netboot/definition.rb +1 -1
- data/templates/ubuntu-10.04.2-server-i386-netboot/postinstall.sh +1 -1
- data/templates/ubuntu-10.04.3-server-amd64-alt/definition.rb +6 -6
- data/templates/ubuntu-10.04.3-server-amd64-alt/postinstall.sh +1 -1
- data/templates/ubuntu-10.04.3-server-amd64/base.sh +11 -0
- data/templates/ubuntu-10.04.3-server-amd64/chef.sh +2 -0
- data/templates/ubuntu-10.04.3-server-amd64/cleanup.sh +19 -0
- data/templates/ubuntu-10.04.3-server-amd64/definition.rb +19 -11
- data/templates/ubuntu-10.04.3-server-amd64/preseed.cfg +4 -4
- data/templates/ubuntu-10.04.3-server-amd64/puppet.sh +1 -0
- data/templates/ubuntu-10.04.3-server-amd64/ruby.sh +24 -0
- data/templates/ubuntu-10.04.3-server-amd64/vagrant.sh +27 -0
- data/templates/ubuntu-10.04.3-server-amd64/virtualbox.sh +12 -0
- data/templates/ubuntu-10.04.3-server-i386/postinstall.sh +1 -1
- data/templates/ubuntu-10.10-server-amd64-netboot/definition.rb +1 -1
- data/templates/ubuntu-10.10-server-amd64-netboot/postinstall.sh +1 -1
- data/templates/ubuntu-10.10-server-amd64/base.sh +11 -0
- data/templates/ubuntu-10.10-server-amd64/chef.sh +2 -0
- data/templates/ubuntu-10.10-server-amd64/cleanup.sh +19 -0
- data/templates/ubuntu-10.10-server-amd64/definition.rb +20 -8
- data/templates/ubuntu-10.10-server-amd64/postinstall.sh +1 -1
- data/templates/ubuntu-10.10-server-amd64/preseed.cfg +5 -5
- data/templates/ubuntu-10.10-server-amd64/puppet.sh +1 -0
- data/templates/ubuntu-10.10-server-amd64/ruby.sh +24 -0
- data/templates/ubuntu-10.10-server-amd64/vagrant.sh +27 -0
- data/templates/ubuntu-10.10-server-amd64/virtualbox.sh +12 -0
- data/templates/ubuntu-10.10-server-i386-netboot/definition.rb +1 -1
- data/templates/ubuntu-10.10-server-i386-netboot/postinstall.sh +1 -1
- data/templates/ubuntu-10.10-server-i386/definition.rb +1 -1
- data/templates/ubuntu-10.10-server-i386/postinstall.sh +1 -1
- data/templates/ubuntu-11.04-server-amd64/apt-upgrade.sh +4 -0
- data/templates/ubuntu-11.04-server-amd64/chef.sh +1 -0
- data/templates/ubuntu-11.04-server-amd64/definition.rb +32 -9
- data/templates/ubuntu-11.04-server-amd64/network-cleanup.sh +14 -0
- data/templates/ubuntu-11.04-server-amd64/nfs-client.sh +3 -0
- data/templates/ubuntu-11.04-server-amd64/puppet.sh +1 -0
- data/templates/ubuntu-11.04-server-amd64/remove-build-essentials.sh +3 -0
- data/templates/ubuntu-11.04-server-amd64/ruby.sh +29 -0
- data/templates/ubuntu-11.04-server-amd64/ssh-keys.sh +7 -0
- data/templates/ubuntu-11.04-server-amd64/sudo.sh +4 -0
- data/templates/ubuntu-11.04-server-amd64/timestamp.sh +1 -0
- data/templates/ubuntu-11.04-server-amd64/vbox_additions.sh +11 -0
- data/templates/ubuntu-11.04-server-amd64/zero-disk.sh +3 -0
- data/templates/ubuntu-11.04-server-i386/definition.rb +2 -2
- data/templates/ubuntu-11.04-server-i386/postinstall.sh +1 -1
- data/templates/ubuntu-8.04.4-server-amd64/definition.rb +1 -2
- data/templates/ubuntu-8.04.4-server-amd64/postinstall.sh +7 -8
- data/templates/ubuntu-8.04.4-server-amd64/preseed.cfg +1 -0
- data/templates/ubuntu-8.04.4-server-i386/definition.rb +2 -2
- data/templates/ubuntu-8.04.4-server-i386/postinstall.sh +3 -25
- data/templates/windows-2008R2-amd64/cygwin-setup.exe +0 -0
- data/templates/windows-2008R2-amd64/definition.rb +1 -1
- data/templates/windows-2008R2-amd64/install-winrm.bat +0 -2
- data/templates/windows-2008R2-amd64/postinstall.sh +1 -1
- data/templates/windows-2008R2-amd64/win7/Autounattend.xml +180 -0
- data/test/build_test.rb +50 -0
- data/test/definition_test.rb +11 -0
- data/test/definitions/test_definition/_test_me.sh +1 -0
- data/test/definitions/test_definition/autorun0 +3 -0
- data/test/definitions/test_definition/definition.rb +27 -0
- data/test/environment_test.rb +67 -0
- data/validation/features/steps/ssh_steps.rb +52 -52
- data/validation/vagrant.feature +64 -48
- data/veewee.gemspec +14 -9
- metadata +243 -213
- data/lib/veewee/command/basebox.rb +0 -63
- data/lib/veewee/command/basebox_build.rb +0 -32
- data/lib/veewee/command/basebox_define.rb +0 -28
- data/lib/veewee/command/basebox_destroy.rb +0 -22
- data/lib/veewee/command/basebox_export.rb +0 -22
- data/lib/veewee/command/basebox_list.rb +0 -23
- data/lib/veewee/command/basebox_ostypes.rb +0 -23
- data/lib/veewee/command/basebox_templates.rb +0 -23
- data/lib/veewee/command/basebox_undefine.rb +0 -22
- data/lib/veewee/command/basebox_validate.rb +0 -26
- data/lib/veewee/export.rb +0 -81
- data/lib/veewee/scancode.rb +0 -151
- data/lib/veewee/session.rb +0 -907
- data/lib/veewee/shell.rb +0 -54
- data/lib/veewee/ssh.rb +0 -193
- data/lib/veewee/transaction.rb +0 -122
- data/lib/veewee/utils.rb +0 -26
- data/lib/veewee/web.rb +0 -48
- data/templates/CentOS-6.1-x86_64-minimal/definition.rb +0 -15
- data/templates/CentOS-6.1-x86_64-minimal/ks.cfg +0 -37
- data/templates/CentOS-6.1-x86_64-minimal/postinstall.sh +0 -50
- data/templates/CentOS-6.2-x86_64-minimal/definition.rb +0 -15
- data/templates/CentOS-6.2-x86_64-minimal/ks.cfg +0 -37
- data/templates/CentOS-6.2-x86_64-minimal/postinstall.sh +0 -50
- data/templates/Debian-6.0.3-amd64-netboot/postinstall.sh +0 -80
- data/templates/Fedora-15-x86_64-netboot/definition.rb +0 -29
- data/templates/Fedora-15-x86_64-netboot/ks.cfg +0 -64
- data/templates/Fedora-15-x86_64-netboot/postinstall.sh +0 -33
- data/templates/Fedora-16-i386/definition.rb +0 -17
- data/templates/Fedora-16-i386/ks.cfg +0 -72
- data/templates/Fedora-16-i386/postinstall.sh +0 -35
- data/templates/Fedora-16-x86_64/definition.rb +0 -17
- data/templates/Fedora-16-x86_64/ks.cfg +0 -72
- data/templates/Fedora-16-x86_64/postinstall.sh +0 -35
- data/templates/SLES-11-SP1-DVD-i586-GM/autoinst_de.xml +0 -1127
- data/templates/SLES-11-SP1-DVD-i586-GM/autoinst_en.xml +0 -1127
- data/templates/SLES-11-SP1-DVD-i586-GM/definition.rb +0 -37
- data/templates/SLES-11-SP1-DVD-i586-GM/postinstall.sh +0 -43
- data/templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_de.xml +0 -1171
- data/templates/SLES-11-SP1-DVD-x86_64-GM/autoinst_en.xml +0 -1171
- data/templates/SLES-11-SP1-DVD-x86_64-GM/definition.rb +0 -37
- data/templates/SLES-11-SP1-DVD-x86_64-GM/postinstall.sh +0 -43
- data/templates/funtoo-latest-generic_64-stable/definition.rb +0 -34
- data/templates/funtoo-latest-generic_64-stable/postinstall.sh +0 -177
- data/templates/funtoo-latest-generic_64-stable/postinstall2.sh +0 -83
- data/templates/gentoo-latest-x86_64-experimental/definition.rb +0 -34
- data/templates/gentoo-latest-x86_64-experimental/postinstall.sh +0 -214
- data/templates/openSUSE-12.1-DVD+NET-i586/autoinst_de.xml +0 -1483
- data/templates/openSUSE-12.1-DVD+NET-i586/autoinst_en.xml +0 -1483
- data/templates/openSUSE-12.1-DVD+NET-i586/definition.rb +0 -44
- data/templates/openSUSE-12.1-DVD+NET-i586/postinstall.sh +0 -43
- data/templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_de.xml +0 -1727
- data/templates/openSUSE-12.1-DVD+NET-x86_64/autoinst_en.xml +0 -1727
- data/templates/openSUSE-12.1-DVD+NET-x86_64/definition.rb +0 -44
- data/templates/openSUSE-12.1-DVD+NET-x86_64/postinstall.sh +0 -43
- data/templates/openbsd50_amd64/README +0 -28
- data/templates/openbsd50_amd64/definition.rb +0 -84
- data/templates/openbsd50_amd64/postinstall.sh +0 -81
- data/templates/openbsd50_i386/.definition.rb.swp +0 -0
- data/templates/openbsd50_i386/README +0 -28
- data/templates/openbsd50_i386/definition.rb +0 -84
- data/templates/openbsd50_i386/postinstall.sh +0 -80
- data/templates/scientificlinux-6.1-i386-netboot/definition.rb +0 -16
- data/templates/scientificlinux-6.1-i386-netboot/ks.cfg +0 -53
- data/templates/scientificlinux-6.1-i386-netboot/postinstall.sh +0 -30
- data/templates/scientificlinux-6.1-x86_64-netboot/definition.rb +0 -16
- data/templates/scientificlinux-6.1-x86_64-netboot/ks.cfg +0 -53
- data/templates/scientificlinux-6.1-x86_64-netboot/postinstall.sh +0 -30
- data/templates/ubuntu-10.04.3-server-amd64/postinstall.sh +0 -90
- data/templates/ubuntu-11.04-server-amd64/postinstall.sh +0 -96
- data/templates/ubuntu-11.10-server-amd64-ishaya/definition.rb +0 -24
- data/templates/ubuntu-11.10-server-amd64-ishaya/preseed.cfg +0 -87
- data/templates/ubuntu-11.10-server-amd64-ruby192/definition.rb +0 -24
- data/templates/ubuntu-11.10-server-amd64-ruby192/postinstall.sh +0 -90
- data/templates/ubuntu-11.10-server-amd64-ruby192/preseed.cfg +0 -87
- data/templates/ubuntu-11.10-server-amd64/definition.rb +0 -35
- data/templates/ubuntu-11.10-server-amd64/postinstall.sh +0 -88
- data/templates/ubuntu-11.10-server-amd64/preseed.cfg +0 -87
- data/templates/ubuntu-11.10-server-i386/definition.rb +0 -35
- data/templates/ubuntu-11.10-server-i386/postinstall.sh +0 -88
- data/templates/ubuntu-11.10-server-i386/preseed.cfg +0 -87
- data/templates/windows-2008R1-serverstandard-amd64/Autounattend.xml +0 -146
- data/templates/windows-2008R1-serverstandard-amd64/README.md +0 -134
- data/templates/windows-2008R1-serverstandard-amd64/cygwin-setup.exe +0 -0
- data/templates/windows-2008R1-serverstandard-amd64/definition.rb +0 -114
- data/templates/windows-2008R1-serverstandard-amd64/install-cygwin-sshd.bat +0 -40
- data/templates/windows-2008R1-serverstandard-amd64/install-guest-additions.bat +0 -5
- data/templates/windows-2008R1-serverstandard-amd64/install-winrm.bat +0 -14
- data/templates/windows-2008R1-serverstandard-amd64/oracle-cert.cer +0 -0
- data/templates/windows-2008R1-serverstandard-amd64/postinstall.sh +0 -74
- data/templates/windows-2008R1-serverstandard-amd64/sudo +0 -2
- data/templates/windows-2008R1-serverstandard-amd64/winrm.rb +0 -8
- data/templates/windows-2008R2-serverstandard-amd64/Autounattend.xml +0 -147
- data/templates/windows-2008R2-serverstandard-amd64/README.md +0 -142
- data/templates/windows-2008R2-serverstandard-amd64/definition.rb +0 -44
- data/templates/windows-2008R2-serverstandard-amd64/install-cygwin-sshd.bat +0 -41
- data/templates/windows-2008R2-serverstandard-amd64/install-winrm.bat +0 -11
- data/templates/windows-2008R2-serverstandard-amd64/oracle-cert.cer +0 -0
- data/templates/windows-2008R2-serverstandard-amd64/postinstall.sh +0 -74
- data/templates/windows-7-enterprise-amd64/Autounattend.xml +0 -149
- data/templates/windows-7-enterprise-amd64/README.md +0 -52
- data/templates/windows-7-enterprise-amd64/definition.rb +0 -39
- data/templates/windows-7-enterprise-amd64/install-cygwin-sshd.bat +0 -40
- data/templates/windows-7-enterprise-amd64/install-winrm.bat +0 -14
- data/templates/windows-7-enterprise-amd64/oracle-cert.cer +0 -0
- data/templates/windows-7-enterprise-amd64/postinstall.sh +0 -74
- data/templates/windows-7-enterprise-i386/Autounattend.xml +0 -151
- data/templates/windows-7-enterprise-i386/README.md +0 -169
- data/templates/windows-7-enterprise-i386/definition.rb +0 -40
- data/templates/windows-7-enterprise-i386/install-cygwin-sshd.bat +0 -40
- data/templates/windows-7-enterprise-i386/install-winrm.bat +0 -14
- data/templates/windows-7-enterprise-i386/oracle-cert.cer +0 -0
- data/templates/windows-7-enterprise-i386/postinstall.sh +0 -74
- data/templates/windows-7-premium-amd64/Autounattend.xml +0 -152
- data/templates/windows-7-premium-amd64/README.md +0 -171
- data/templates/windows-7-premium-amd64/definition.rb +0 -38
- data/templates/windows-7-premium-amd64/install-chefclient.bat +0 -44
- data/templates/windows-7-premium-amd64/install-winrm.bat +0 -11
- data/templates/windows-7-premium-amd64/oracle-cert.cer +0 -0
- data/templates/windows-7-premium-amd64/postinstall.sh +0 -124
- data/templates/windows-7-premium-amd64/winrm.rb +0 -8
- data/templates/windows-7-professional-amd64/Autounattend.xml +0 -152
- data/templates/windows-7-professional-amd64/README.md +0 -171
- data/templates/windows-7-professional-amd64/definition.rb +0 -41
- data/templates/windows-7-professional-amd64/install-cygwin-sshd.bat +0 -40
- data/templates/windows-7-professional-amd64/install-winrm.bat +0 -14
- data/templates/windows-7-professional-amd64/oracle-cert.cer +0 -0
- data/templates/windows-7-professional-amd64/postinstall.sh +0 -74
- data/templates/windows-7-ultimate-amd64/Autounattend.xml +0 -152
- data/templates/windows-7-ultimate-amd64/README.md +0 -89
- data/templates/windows-7-ultimate-amd64/definition.rb +0 -41
- data/templates/windows-7-ultimate-amd64/install-cygwin-sshd.bat +0 -40
- data/templates/windows-7-ultimate-amd64/install-winrm.bat +0 -14
- data/templates/windows-7-ultimate-amd64/oracle-cert.cer +0 -0
- data/templates/windows-7-ultimate-amd64/postinstall.sh +0 -74
- data/templates/windows-7sp1-ultimate-amd64/Autounattend.xml +0 -152
- data/templates/windows-7sp1-ultimate-amd64/README.md +0 -89
- data/templates/windows-7sp1-ultimate-amd64/definition.rb +0 -42
- data/templates/windows-7sp1-ultimate-amd64/install-cygwin-sshd.bat +0 -40
- data/templates/windows-7sp1-ultimate-amd64/install-winrm.bat +0 -14
- data/templates/windows-7sp1-ultimate-amd64/oracle-cert.cer +0 -0
- data/templates/windows-7sp1-ultimate-amd64/postinstall.sh +0 -74
- data/templates/windows-8-preview-dev-amd64/Autounattend.xml +0 -140
- data/templates/windows-8-preview-dev-amd64/README.md +0 -134
- data/templates/windows-8-preview-dev-amd64/cygwin-setup.exe +0 -0
- data/templates/windows-8-preview-dev-amd64/definition.rb +0 -114
- data/templates/windows-8-preview-dev-amd64/install-cygwin-sshd.bat +0 -38
- data/templates/windows-8-preview-dev-amd64/install-winrm.bat +0 -11
- data/templates/windows-8-preview-dev-amd64/oracle-cert.cer +0 -0
- data/templates/windows-8-preview-dev-amd64/postinstall.sh +0 -122
- data/templates/windows-8-preview-dev-amd64/winrm.rb +0 -8
- data/trials/docu-vbox.txt +0 -83
- data/trials/f.rb +0 -29
- data/trials/t.rb +0 -15
@@ -0,0 +1,36 @@
|
|
1
|
+
require 'veewee/config/component'
|
2
|
+
require 'ostruct'
|
3
|
+
|
4
|
+
module Veewee
|
5
|
+
class Config
|
6
|
+
|
7
|
+
class Builders
|
8
|
+
def initialize(env)
|
9
|
+
@env=env
|
10
|
+
@builders=Hash.new
|
11
|
+
end
|
12
|
+
|
13
|
+
def [](name)
|
14
|
+
return @builders[name] if @builders.has_key?(name)
|
15
|
+
|
16
|
+
begin
|
17
|
+
# Now that we know the actual builder, we can check if the builder has this type of component
|
18
|
+
require_path='veewee/builder/'+name.to_s.downcase+"/builder"
|
19
|
+
require require_path
|
20
|
+
|
21
|
+
# Now we can create the real builder
|
22
|
+
real_builder=Object.const_get("Veewee").const_get("Builder").const_get(name.to_s.capitalize).const_get("Builder").new(name,{},@env)
|
23
|
+
rescue ::Veewee::Error => e
|
24
|
+
raise
|
25
|
+
rescue Error => e
|
26
|
+
env.ui.error "Error loading builder with #{name},#{$!}"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def length
|
31
|
+
@builders.length
|
32
|
+
end
|
33
|
+
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end #Module Veewee
|
@@ -0,0 +1,82 @@
|
|
1
|
+
require 'veewee/config/component'
|
2
|
+
require 'ostruct'
|
3
|
+
|
4
|
+
module Veewee
|
5
|
+
class Config
|
6
|
+
class Collection
|
7
|
+
|
8
|
+
attr_accessor :components
|
9
|
+
attr_accessor :type
|
10
|
+
attr_accessor :config
|
11
|
+
|
12
|
+
attr_reader :env
|
13
|
+
|
14
|
+
def initialize(type,config)
|
15
|
+
@type=type
|
16
|
+
@components=Hash.new
|
17
|
+
@providers=config.providers
|
18
|
+
@config=config
|
19
|
+
@env=config.env
|
20
|
+
end
|
21
|
+
|
22
|
+
def define(name)
|
23
|
+
# We do this for vagrant syntax
|
24
|
+
# Depending on type, we create a variable of that type
|
25
|
+
# f.i. component_stub.vm or component_stub.lb
|
26
|
+
component_stub=OpenStruct.new
|
27
|
+
component_stub.send("#{@type}=",::Veewee::Config::Component.new(config))
|
28
|
+
|
29
|
+
env.logger.info("config collection"){ "First pass of reading the config"}
|
30
|
+
# Now we can 'execute' the config file using our stub component
|
31
|
+
# For guessing the provider type
|
32
|
+
yield component_stub
|
33
|
+
|
34
|
+
env.logger.debug("config collection"){ "Stubs collection type #{@type} is loaded"}
|
35
|
+
|
36
|
+
# After processing we extract the component again
|
37
|
+
component=component_stub.send("#{@type}")
|
38
|
+
provider=@providers[component.provider.to_s]
|
39
|
+
|
40
|
+
env.logger.debug("config collection"){ "We get here"}
|
41
|
+
|
42
|
+
abort "Provider #{component.provider.to_s} does not (yet) exist" if provider.nil?
|
43
|
+
real_component=provider.get_component(@type.capitalize,env)
|
44
|
+
begin
|
45
|
+
|
46
|
+
# And repeat the same process with a real component
|
47
|
+
env.logger.debug("config collection"){ "Component of #{@type}"}
|
48
|
+
|
49
|
+
component_stub.send("#{@type}=",real_component)
|
50
|
+
|
51
|
+
yield component_stub
|
52
|
+
# After processing we extract the component again
|
53
|
+
component=component_stub.send("#{@type}")
|
54
|
+
# And we set the name
|
55
|
+
component.name=name
|
56
|
+
|
57
|
+
# We set the provider for this component
|
58
|
+
component.provider=provider
|
59
|
+
|
60
|
+
# And register this component with the provider
|
61
|
+
# if it is a vm, we add to the hash vms
|
62
|
+
# if it is an ip, we add it to the hash ips
|
63
|
+
provider_collection=provider.instance_variable_get("@#{@type}s")
|
64
|
+
provider_collection[name]=component
|
65
|
+
|
66
|
+
# And we also add it to the global config element
|
67
|
+
# So we can have all components of a similar type in one place
|
68
|
+
config_collection=@config.instance_variable_get("@#{@type}s")
|
69
|
+
config_collection[name]=component
|
70
|
+
|
71
|
+
# Now we can ask the component to validate itself
|
72
|
+
#component_stub.validate
|
73
|
+
components[name.to_s]=component
|
74
|
+
|
75
|
+
rescue Error => e
|
76
|
+
env.ui.error "Error loading component with #{name} of type #{@type} for provider #{component.provider.type}"
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end #Module Veewee
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Veewee
|
2
|
+
class Config
|
3
|
+
class Component
|
4
|
+
|
5
|
+
attr_accessor :provider
|
6
|
+
|
7
|
+
attr_reader :env
|
8
|
+
|
9
|
+
def initialize(config)
|
10
|
+
@env=config.env
|
11
|
+
end
|
12
|
+
|
13
|
+
def method_missing(m, *args, &block)
|
14
|
+
# env.ui.info "There's no method called #{m} here -- please try again."
|
15
|
+
end
|
16
|
+
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end #Module Veewee
|
@@ -0,0 +1,44 @@
|
|
1
|
+
require 'veewee/config/component'
|
2
|
+
require 'veewee/definition'
|
3
|
+
|
4
|
+
require 'ostruct'
|
5
|
+
|
6
|
+
module Veewee
|
7
|
+
class Config
|
8
|
+
class Definition
|
9
|
+
|
10
|
+
attr_accessor :components
|
11
|
+
attr_reader :env
|
12
|
+
|
13
|
+
def initialize(config)
|
14
|
+
@env=config.env
|
15
|
+
@components=Hash.new
|
16
|
+
end
|
17
|
+
|
18
|
+
# Currently not used, this is in case we will specify the a definition in the Veeweefile
|
19
|
+
# This is for future needs
|
20
|
+
def define(name)
|
21
|
+
# Depending on type, we create a variable of that type
|
22
|
+
definition_stub=OpenStruct.new
|
23
|
+
|
24
|
+
begin
|
25
|
+
# Get a real definition object
|
26
|
+
real_definition=::Veewee::Definition.new(name,env)
|
27
|
+
rescue Error => e
|
28
|
+
env.ui.error "Error loading provider with #{name},#{$!}"
|
29
|
+
end
|
30
|
+
|
31
|
+
definition_stub.definition=real_definition
|
32
|
+
|
33
|
+
env.logger.debug("config definition"){ "Start defining definition"}
|
34
|
+
|
35
|
+
yield definition_stub
|
36
|
+
|
37
|
+
env.logger.debug("config definition"){ "End defining definition #{definition_stub.definition.name}"}
|
38
|
+
|
39
|
+
components[name.to_s]=definition_stub.definition
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end #Module Veewee
|
@@ -0,0 +1,165 @@
|
|
1
|
+
---
|
2
|
+
Other:
|
3
|
+
:fusion: other
|
4
|
+
:kvm:
|
5
|
+
:vbox: Other
|
6
|
+
Other:
|
7
|
+
:fusion: other-64
|
8
|
+
:kvm:
|
9
|
+
:vbox: Other
|
10
|
+
FreeBSD:
|
11
|
+
:fusion: freeBSD
|
12
|
+
:kvm:
|
13
|
+
:vbox: FreeBSD
|
14
|
+
FreeBSD_64:
|
15
|
+
:fusion: FreeBSD_64
|
16
|
+
:kvm:
|
17
|
+
:vbox: FreeBSD-64
|
18
|
+
Oracle:
|
19
|
+
:fusion: oraclelinux
|
20
|
+
:kvm:
|
21
|
+
:vbox: Oracle
|
22
|
+
Oracle_64:
|
23
|
+
:fusion: oraclelinux-64
|
24
|
+
:kvm:
|
25
|
+
:vbox: Oracle_64
|
26
|
+
Debian:
|
27
|
+
:fusion: debian5
|
28
|
+
:kvm:
|
29
|
+
:vbox: Debian
|
30
|
+
Debian_64:
|
31
|
+
:fusion: debian5-64
|
32
|
+
:kvm:
|
33
|
+
:vbox: Debian_64
|
34
|
+
Gentoo:
|
35
|
+
:fusion: other26xlinux
|
36
|
+
:kvm:
|
37
|
+
:vbox: Gentoo
|
38
|
+
Gentoo_64:
|
39
|
+
:fusion: other26xlinux-64
|
40
|
+
:kvm:
|
41
|
+
:vbox: Gentoo_64
|
42
|
+
Linux22:
|
43
|
+
:fusion: linux
|
44
|
+
:kvm:
|
45
|
+
:vbox: Linux22
|
46
|
+
Linux24:
|
47
|
+
:fusion: other24xlinux
|
48
|
+
:kvm:
|
49
|
+
:vbox: Linux24
|
50
|
+
Linux24_64:
|
51
|
+
:fusion: other24xlinux-64
|
52
|
+
:kvm:
|
53
|
+
:vbox: Linux24_64
|
54
|
+
Linux26:
|
55
|
+
:fusion: other26xlinux
|
56
|
+
:kvm:
|
57
|
+
:vbox: Linux26
|
58
|
+
Linux26_64:
|
59
|
+
:fusion: other26xlinux-64
|
60
|
+
:kvm:
|
61
|
+
:vbox: Linux26_64
|
62
|
+
RedHat:
|
63
|
+
:fusion: RedHat
|
64
|
+
:kvm:
|
65
|
+
:vbox: RedHat
|
66
|
+
RedHat_64:
|
67
|
+
:fusion: RedHat_64
|
68
|
+
:kvm:
|
69
|
+
:vbox: RedHat_64
|
70
|
+
Centos:
|
71
|
+
:fusion: centos
|
72
|
+
:kvm:
|
73
|
+
:vbox: RedHat
|
74
|
+
Centos_64:
|
75
|
+
:fusion: centos-64
|
76
|
+
:kvm:
|
77
|
+
:vbox: RedHat_64
|
78
|
+
ArchLinux:
|
79
|
+
:fusion: other26xlinux
|
80
|
+
:kvm:
|
81
|
+
:vbox: ArchLinux
|
82
|
+
ArchLinux_64:
|
83
|
+
:fusion: other26xlinux-64
|
84
|
+
:kvm:
|
85
|
+
:vbox: ArchLinux_64
|
86
|
+
OpenSUSE:
|
87
|
+
:fusion: opensuse
|
88
|
+
:kvm:
|
89
|
+
:vbox: OpenSUSE
|
90
|
+
OpenSUSE_64:
|
91
|
+
:fusion: opensuse-64
|
92
|
+
:kvm:
|
93
|
+
:vbox: OpenSUSE_64
|
94
|
+
SUSE:
|
95
|
+
:fusion: suse
|
96
|
+
:kvm:
|
97
|
+
:vbox: OpenSUSE
|
98
|
+
SUSE_64:
|
99
|
+
:fusion: suse-64
|
100
|
+
:kvm:
|
101
|
+
:vbox: OpenSUSE_64
|
102
|
+
Fedora:
|
103
|
+
:fusion: fedora
|
104
|
+
:kvm:
|
105
|
+
:vbox: Fedora
|
106
|
+
Fedora_64:
|
107
|
+
:fusion: fedora-64
|
108
|
+
:kvm:
|
109
|
+
:vbox: Fedora_64
|
110
|
+
Ubuntu:
|
111
|
+
:fusion: ubuntu
|
112
|
+
:kvm:
|
113
|
+
:vbox: Ubuntu
|
114
|
+
Ubuntu_64:
|
115
|
+
:fusion: ubuntu-64
|
116
|
+
:kvm:
|
117
|
+
:vbox: Ubuntu_64
|
118
|
+
Linux:
|
119
|
+
:fusion: linux
|
120
|
+
:kvm:
|
121
|
+
:vbox: Linux
|
122
|
+
Solaris:
|
123
|
+
:fusion: solaris10
|
124
|
+
:kvm:
|
125
|
+
:vbox: Solaris
|
126
|
+
Solaris_64:
|
127
|
+
:fusion: solaris10-64
|
128
|
+
:kvm:
|
129
|
+
:vbox: Solaris_64
|
130
|
+
Solaris9:
|
131
|
+
:fusion: solaris
|
132
|
+
:kvm:
|
133
|
+
:vbox: Solaris
|
134
|
+
Solaris7:
|
135
|
+
:fusion: solaris7
|
136
|
+
:kvm:
|
137
|
+
:vbox: Solaris
|
138
|
+
Solaris8:
|
139
|
+
:fusion: solaris8
|
140
|
+
:kvm:
|
141
|
+
:vbox: Solaris
|
142
|
+
OpenSolaris:
|
143
|
+
:fusion: solaris10
|
144
|
+
:kvm:
|
145
|
+
:vbox: OpenSolaris
|
146
|
+
OpenSolaris_64:
|
147
|
+
:fusion: solaris-64
|
148
|
+
:kvm:
|
149
|
+
:vbox: OpenSolaris_64
|
150
|
+
OpenBSD:
|
151
|
+
:fusion: other
|
152
|
+
:kvm:
|
153
|
+
:vbox: OpenBSD
|
154
|
+
OpenBSD_64:
|
155
|
+
:fusion: other-64
|
156
|
+
:kvm:
|
157
|
+
:vbox: OpenBSD_64
|
158
|
+
NetBSD:
|
159
|
+
:fusion: other
|
160
|
+
:kvm:
|
161
|
+
:vbox: NetBSD
|
162
|
+
NetBSD_64:
|
163
|
+
:fusion: other-64
|
164
|
+
:kvm:
|
165
|
+
:vbox: NetBSD_64
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module Veewee
|
2
|
+
class Config
|
3
|
+
class Veewee
|
4
|
+
|
5
|
+
attr_reader :env
|
6
|
+
|
7
|
+
def initialize(config)
|
8
|
+
@env=config.env
|
9
|
+
env.logger.info("Initializing veewee config object")
|
10
|
+
end
|
11
|
+
|
12
|
+
def method_missing(m, *args, &block)
|
13
|
+
@env.send(m, *args)
|
14
|
+
end
|
15
|
+
|
16
|
+
end #Class
|
17
|
+
end #Module
|
18
|
+
end #Module
|
19
|
+
|
20
|
+
|
21
|
+
|
@@ -0,0 +1,130 @@
|
|
1
|
+
require 'ostruct'
|
2
|
+
|
3
|
+
module Veewee
|
4
|
+
class Definition
|
5
|
+
|
6
|
+
attr_accessor :name
|
7
|
+
attr_accessor :env
|
8
|
+
|
9
|
+
attr_accessor :cpu_count,:memory_size,:iso_file
|
10
|
+
attr_accessor :disk_size, :disk_format
|
11
|
+
|
12
|
+
attr_accessor :os_typ_id
|
13
|
+
|
14
|
+
attr_accessor :boot_wait,:boot_cmd_sequence
|
15
|
+
|
16
|
+
attr_accessor :kickstart_port,:kickstart_ip,:kickstart_timeout, :kickstart_file
|
17
|
+
|
18
|
+
attr_accessor :ssh_login_timeout, :ssh_user , :ssh_password, :ssh_key, :ssh_host_port, :ssh_guest_port
|
19
|
+
|
20
|
+
attr_accessor :sudo_cmd
|
21
|
+
attr_accessor :shutdown_cmd
|
22
|
+
|
23
|
+
attr_accessor :postinstall_files, :postinstall_timeout
|
24
|
+
|
25
|
+
attr_accessor :floppy_files
|
26
|
+
|
27
|
+
attr_accessor :path
|
28
|
+
|
29
|
+
attr_accessor :os_type_id,:use_hw_virt_ext,:use_pae,:hostiocache
|
30
|
+
|
31
|
+
attr_accessor :iso_dowload_timeout, :iso_src,:iso_md5 ,:iso_download_instructions
|
32
|
+
|
33
|
+
def initialize(name,env)
|
34
|
+
|
35
|
+
@name=name
|
36
|
+
@env=env
|
37
|
+
|
38
|
+
# Default is 1 CPU + 256 Mem of memory
|
39
|
+
@cpu_count='1' ; @memory_size='256';
|
40
|
+
|
41
|
+
# Default there is no ISO file mounted
|
42
|
+
@iso_file = nil, @iso_src = nil ; @iso_md5 = nil ; @iso_download_timeout=1000 ; @iso_download_instructions = nil
|
43
|
+
|
44
|
+
# Default is no floppy mounted
|
45
|
+
@floppy_files = nil
|
46
|
+
|
47
|
+
# Default there are no post install files
|
48
|
+
@postinstall_files=[]; @postinstall_timeout = 10000;
|
49
|
+
|
50
|
+
@iso_file=""
|
51
|
+
@disk_size = '10240'; @disk_format = 'VDI'
|
52
|
+
|
53
|
+
# :hostiocache => 'off' ,
|
54
|
+
# :os_type_id => 'Ubuntu',
|
55
|
+
# :boot_wait => "10", :boot_cmd_sequence => [ "boot"],
|
56
|
+
# :kickstart_port => "7122", :kickstart_ip => "127.0.0.1", :kickstart_timeout => 10000,#
|
57
|
+
# :ssh_login_timeout => "10000", :ssh_user => "vagrant", :ssh_password => "vagrant",:ssh_key => "",
|
58
|
+
# :ssh_host_port => "2222", :ssh_guest_port => "22", :sudo_cmd => "echo '%p'|sudo -S sh '%f'",
|
59
|
+
# :shutdown_cmd => "shutdown -h now",
|
60
|
+
# :kickstart_file => nil,
|
61
|
+
|
62
|
+
end
|
63
|
+
|
64
|
+
|
65
|
+
def method_missing(m, *args, &block)
|
66
|
+
env.logger.info "There's no attribute #{m} defined for builder #{@name}-- ignoring it"
|
67
|
+
end
|
68
|
+
|
69
|
+
def declare(options)
|
70
|
+
options.each do |key, value|
|
71
|
+
instance_variable_set("@#{key}".to_sym, options[key])
|
72
|
+
env.logger.info("definition") { " - #{key} : #{options[key]}" }
|
73
|
+
end
|
74
|
+
verify_ostype
|
75
|
+
|
76
|
+
end
|
77
|
+
|
78
|
+
# Loading a definition
|
79
|
+
def self.load(name,env)
|
80
|
+
|
81
|
+
dir=env.get_definition_paths[name]
|
82
|
+
|
83
|
+
if dir.nil?
|
84
|
+
env.ui.error "Error loading definition."
|
85
|
+
env.ui.error "could not find the directory of definition #{name}"
|
86
|
+
exit -1
|
87
|
+
|
88
|
+
end
|
89
|
+
|
90
|
+
veewee_definition=Veewee::Definition.new(name,env)
|
91
|
+
veewee_definition.path=dir
|
92
|
+
|
93
|
+
definition_file=File.join(dir,"definition.rb")
|
94
|
+
if File.exists?(definition_file)
|
95
|
+
definition_content=File.read(definition_file)
|
96
|
+
|
97
|
+
definition_content.gsub!("Veewee::Session.declare","veewee_definition.declare")
|
98
|
+
definition_content.gsub!("Veewee::Definition.declare","veewee_definition.declare")
|
99
|
+
|
100
|
+
env.logger.info(definition_content)
|
101
|
+
|
102
|
+
begin
|
103
|
+
cwd=FileUtils.pwd
|
104
|
+
FileUtils.cd(dir)
|
105
|
+
self.instance_eval(definition_content)
|
106
|
+
env.logger.info("Setting definition path for definition #{name} to #{File.dirname(definition_file)}")
|
107
|
+
FileUtils.cd(cwd)
|
108
|
+
rescue NameError => ex
|
109
|
+
env.ui.error("NameError reading definition from file #{definition_file} #{ex}")
|
110
|
+
rescue Exception => ex
|
111
|
+
env.ui.error("Error in the definition from file #{definition_file}\n#{ex}")
|
112
|
+
exit -1
|
113
|
+
end
|
114
|
+
else
|
115
|
+
env.logger.info "#{definition_file} not found"
|
116
|
+
end
|
117
|
+
veewee_definition
|
118
|
+
end
|
119
|
+
|
120
|
+
def verify_ostype
|
121
|
+
|
122
|
+
unless env.config.ostypes.has_key?(@os_type_id)
|
123
|
+
raise "The ostype: #{@os_type_id} is not available"
|
124
|
+
end
|
125
|
+
|
126
|
+
end
|
127
|
+
|
128
|
+
|
129
|
+
end #End Class
|
130
|
+
end #End Module
|