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
@@ -1,16 +0,0 @@
|
|
1
|
-
Veewee::Session.declare({
|
2
|
-
:cpu_count => '1', :memory_size=> '512',
|
3
|
-
:disk_size => '10140', :disk_format => 'VDI', :hostiocache => 'off', :ioapic => 'on', :pae => 'on',
|
4
|
-
:os_type_id => 'RedHat_64',
|
5
|
-
:iso_file => "SL-61-i386-2011-07-27-boot.iso",
|
6
|
-
:iso_src => "http://mirrors.200p-sf.sonic.net/scientific/6.1/i386/iso/SL-61-i386-2011-07-27-boot.iso",
|
7
|
-
:iso_md5 => "d3cd58e67052331c9c3648e3ecd00b13",
|
8
|
-
:iso_download_timeout => 1000,
|
9
|
-
:boot_wait => "15", :boot_cmd_sequence => [ '<Tab> text ks=http://%IP%:%PORT%/ks.cfg<Enter>' ],
|
10
|
-
:kickstart_port => "7122", :kickstart_timeout => 10000, :kickstart_file => "ks.cfg",
|
11
|
-
:ssh_login_timeout => "100", :ssh_user => "vagrant", :ssh_password => "vagrant", :ssh_key => "",
|
12
|
-
:ssh_host_port => "7222", :ssh_guest_port => "22",
|
13
|
-
:sudo_cmd => "echo '%p'|sudo -S sh '%f'",
|
14
|
-
:shutdown_cmd => "/sbin/halt -h -p",
|
15
|
-
:postinstall_files => [ "postinstall.sh"], :postinstall_timeout => 10000
|
16
|
-
})
|
@@ -1,53 +0,0 @@
|
|
1
|
-
install
|
2
|
-
url --url=http://mirrors.200p-sf.sonic.net/scientific/6.1/i386/os/
|
3
|
-
lang en_US.UTF-8
|
4
|
-
keyboard us
|
5
|
-
network --bootproto dhcp
|
6
|
-
rootpw --iscrypted $1$damlkd,f$UC/u5pUts5QiU3ow.CSso/
|
7
|
-
firewall --enabled --trust eth0 --ssh
|
8
|
-
authconfig --enableshadow --enablemd5
|
9
|
-
selinux --disabled
|
10
|
-
timezone UTC
|
11
|
-
bootloader --location=mbr
|
12
|
-
|
13
|
-
text
|
14
|
-
skipx
|
15
|
-
zerombr
|
16
|
-
|
17
|
-
clearpart --all --initlabel
|
18
|
-
autopart
|
19
|
-
|
20
|
-
auth --useshadow --enablemd5
|
21
|
-
firstboot --disabled
|
22
|
-
reboot
|
23
|
-
|
24
|
-
repo --name=epel --baseurl=http://download.fedora.redhat.com/pub/epel/6/i386/ --includepkgs='ruby-augeas,ruby-shadow'
|
25
|
-
repo --name=puppetlabs --baseurl=http://yum.puppetlabs.com/el/6/products/i386/ --includepkgs='puppet,facter'
|
26
|
-
repo --name=puppetlabs-dependencies --baseurl=http://yum.puppetlabs.com/el/6/dependencies/i386/
|
27
|
-
|
28
|
-
%packages
|
29
|
-
@ core
|
30
|
-
ruby
|
31
|
-
ruby-devel
|
32
|
-
rubygems
|
33
|
-
kernel-devel
|
34
|
-
gcc
|
35
|
-
gcc-c++
|
36
|
-
bzip2
|
37
|
-
make
|
38
|
-
zlib-devel
|
39
|
-
openssl-devel
|
40
|
-
readline-devel
|
41
|
-
sqlite-devel
|
42
|
-
puppet
|
43
|
-
facter
|
44
|
-
|
45
|
-
-ipw2100-firmware
|
46
|
-
-ipw2200-firmware
|
47
|
-
-ivtv-firmware
|
48
|
-
|
49
|
-
%post
|
50
|
-
/usr/sbin/groupadd vagrant
|
51
|
-
/usr/sbin/useradd vagrant -g vagrant -G wheel
|
52
|
-
echo "vagrant"|passwd --stdin vagrant
|
53
|
-
echo "vagrant ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
@@ -1,30 +0,0 @@
|
|
1
|
-
#http://chrisadams.me.uk/2010/05/10/setting-up-a-centos-base-box-for-development-and-testing-with-vagrant/
|
2
|
-
|
3
|
-
date > /etc/vagrant_box_build_time
|
4
|
-
|
5
|
-
yum -y erase wireless-tools gtk2 libX11 hicolor-icon-theme avahi freetype bitstream-vera-fonts
|
6
|
-
yum -y clean all
|
7
|
-
|
8
|
-
gem install --no-ri --no-rdoc chef
|
9
|
-
|
10
|
-
# Installing vagrant keys
|
11
|
-
mkdir /home/vagrant/.ssh
|
12
|
-
chmod 700 /home/vagrant/.ssh
|
13
|
-
cd /home/vagrant/.ssh
|
14
|
-
wget --no-check-certificate 'http://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub' -O authorized_keys
|
15
|
-
chown -R vagrant /home/vagrant/.ssh
|
16
|
-
|
17
|
-
# Installing the virtualbox guest additions
|
18
|
-
VBOX_VERSION=$(cat /home/vagrant/.vbox_version)
|
19
|
-
cd /tmp
|
20
|
-
wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
|
21
|
-
mount -o loop VBoxGuestAdditions_$VBOX_VERSION.iso /mnt
|
22
|
-
sh /mnt/VBoxLinuxAdditions.run
|
23
|
-
umount /mnt
|
24
|
-
rm VBoxGuestAdditions_$VBOX_VERSION.iso
|
25
|
-
|
26
|
-
sed -i "s/^.*requiretty/#Defaults requiretty/" /etc/sudoers
|
27
|
-
|
28
|
-
dd if=/dev/zero of=/tmp/clean || rm /tmp/clean
|
29
|
-
|
30
|
-
exit
|
@@ -1,16 +0,0 @@
|
|
1
|
-
Veewee::Session.declare({
|
2
|
-
:cpu_count => '1', :memory_size=> '512',
|
3
|
-
:disk_size => '10140', :disk_format => 'VDI', :hostiocache => 'off', :ioapic => 'on', :pae => 'on',
|
4
|
-
:os_type_id => 'RedHat_64',
|
5
|
-
:iso_file => "SL-61-x86_64-2011-07-27-boot.iso",
|
6
|
-
:iso_src => "http://mirrors.200p-sf.sonic.net/scientific/6.1/x86_64/iso/SL-61-x86_64-2011-07-27-boot.iso",
|
7
|
-
:iso_md5 => "863841b65b5b42f7ad0e735bb9aa669d",
|
8
|
-
:iso_download_timeout => 1000,
|
9
|
-
:boot_wait => "15", :boot_cmd_sequence => [ '<Tab> text ks=http://%IP%:%PORT%/ks.cfg<Enter>' ],
|
10
|
-
:kickstart_port => "7122", :kickstart_timeout => 10000, :kickstart_file => "ks.cfg",
|
11
|
-
:ssh_login_timeout => "100", :ssh_user => "vagrant", :ssh_password => "vagrant", :ssh_key => "",
|
12
|
-
:ssh_host_port => "7222", :ssh_guest_port => "22",
|
13
|
-
:sudo_cmd => "echo '%p'|sudo -S sh '%f'",
|
14
|
-
:shutdown_cmd => "/sbin/halt -h -p",
|
15
|
-
:postinstall_files => [ "postinstall.sh"], :postinstall_timeout => 10000
|
16
|
-
})
|
@@ -1,53 +0,0 @@
|
|
1
|
-
install
|
2
|
-
url --url=http://mirrors.200p-sf.sonic.net/scientific/6.1/x86_64/os/
|
3
|
-
lang en_US.UTF-8
|
4
|
-
keyboard us
|
5
|
-
network --bootproto dhcp
|
6
|
-
rootpw --iscrypted $1$damlkd,f$UC/u5pUts5QiU3ow.CSso/
|
7
|
-
firewall --enabled --trust eth0 --ssh
|
8
|
-
authconfig --enableshadow --enablemd5
|
9
|
-
selinux --disabled
|
10
|
-
timezone UTC
|
11
|
-
bootloader --location=mbr
|
12
|
-
|
13
|
-
text
|
14
|
-
skipx
|
15
|
-
zerombr
|
16
|
-
|
17
|
-
clearpart --all --initlabel
|
18
|
-
autopart
|
19
|
-
|
20
|
-
auth --useshadow --enablemd5
|
21
|
-
firstboot --disabled
|
22
|
-
reboot
|
23
|
-
|
24
|
-
repo --name=epel --baseurl=http://download.fedora.redhat.com/pub/epel/6/x86_64/ --includepkgs='ruby-augeas,ruby-shadow'
|
25
|
-
repo --name=puppetlabs --baseurl=http://yum.puppetlabs.com/el/6/products/x86_64/ --includepkgs='puppet,facter'
|
26
|
-
repo --name=puppetlabs-dependencies --baseurl=http://yum.puppetlabs.com/el/6/dependencies/x86_64/
|
27
|
-
|
28
|
-
%packages
|
29
|
-
@ core
|
30
|
-
ruby
|
31
|
-
ruby-devel
|
32
|
-
rubygems
|
33
|
-
kernel-devel
|
34
|
-
gcc
|
35
|
-
gcc-c++
|
36
|
-
bzip2
|
37
|
-
make
|
38
|
-
zlib-devel
|
39
|
-
openssl-devel
|
40
|
-
readline-devel
|
41
|
-
sqlite-devel
|
42
|
-
puppet
|
43
|
-
facter
|
44
|
-
|
45
|
-
-ipw2100-firmware
|
46
|
-
-ipw2200-firmware
|
47
|
-
-ivtv-firmware
|
48
|
-
|
49
|
-
%post
|
50
|
-
/usr/sbin/groupadd vagrant
|
51
|
-
/usr/sbin/useradd vagrant -g vagrant -G wheel
|
52
|
-
echo "vagrant"|passwd --stdin vagrant
|
53
|
-
echo "vagrant ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
@@ -1,30 +0,0 @@
|
|
1
|
-
#http://chrisadams.me.uk/2010/05/10/setting-up-a-centos-base-box-for-development-and-testing-with-vagrant/
|
2
|
-
|
3
|
-
date > /etc/vagrant_box_build_time
|
4
|
-
|
5
|
-
yum -y erase wireless-tools gtk2 libX11 hicolor-icon-theme avahi freetype bitstream-vera-fonts
|
6
|
-
yum -y clean all
|
7
|
-
|
8
|
-
gem install --no-ri --no-rdoc chef
|
9
|
-
|
10
|
-
# Installing vagrant keys
|
11
|
-
mkdir /home/vagrant/.ssh
|
12
|
-
chmod 700 /home/vagrant/.ssh
|
13
|
-
cd /home/vagrant/.ssh
|
14
|
-
wget --no-check-certificate 'http://github.com/mitchellh/vagrant/raw/master/keys/vagrant.pub' -O authorized_keys
|
15
|
-
chown -R vagrant /home/vagrant/.ssh
|
16
|
-
|
17
|
-
# Installing the virtualbox guest additions
|
18
|
-
VBOX_VERSION=$(cat /home/vagrant/.vbox_version)
|
19
|
-
cd /tmp
|
20
|
-
wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
|
21
|
-
mount -o loop VBoxGuestAdditions_$VBOX_VERSION.iso /mnt
|
22
|
-
sh /mnt/VBoxLinuxAdditions.run
|
23
|
-
umount /mnt
|
24
|
-
rm VBoxGuestAdditions_$VBOX_VERSION.iso
|
25
|
-
|
26
|
-
sed -i "s/^.*requiretty/#Defaults requiretty/" /etc/sudoers
|
27
|
-
|
28
|
-
dd if=/dev/zero of=/tmp/clean || rm /tmp/clean
|
29
|
-
|
30
|
-
exit
|
@@ -1,90 +0,0 @@
|
|
1
|
-
# postinstall.sh created from Mitchell's official lucid32/64 baseboxes
|
2
|
-
|
3
|
-
date > /etc/vagrant_box_build_time
|
4
|
-
|
5
|
-
# Apt-install various things necessary for Ruby, guest additions,
|
6
|
-
# etc., and remove optional things to trim down the machine.
|
7
|
-
apt-get -y update
|
8
|
-
apt-get -y upgrade
|
9
|
-
apt-get -y install linux-headers-$(uname -r) build-essential
|
10
|
-
apt-get -y install zlib1g-dev libssl-dev libreadline5-dev
|
11
|
-
apt-get clean
|
12
|
-
|
13
|
-
# Setup sudo to allow no-password sudo for "admin"
|
14
|
-
cp /etc/sudoers /etc/sudoers.orig
|
15
|
-
sed -i -e '/Defaults\s\+env_reset/a Defaults\texempt_group=admin' /etc/sudoers
|
16
|
-
sed -i -e 's/%admin ALL=(ALL) ALL/%admin ALL=NOPASSWD:ALL/g' /etc/sudoers
|
17
|
-
|
18
|
-
# Install NFS client
|
19
|
-
apt-get -y install nfs-common
|
20
|
-
|
21
|
-
# Install Ruby from source in /opt so that users of Vagrant
|
22
|
-
# can install their own Rubies using packages or however.
|
23
|
-
# We must install the 1.8.x series since Puppet doesn't support
|
24
|
-
# Ruby 1.9 yet.
|
25
|
-
wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
|
26
|
-
tar xvzf ruby-1.8.7-p334.tar.gz
|
27
|
-
cd ruby-1.8.7-p334
|
28
|
-
./configure --prefix=/opt/ruby
|
29
|
-
make
|
30
|
-
make install
|
31
|
-
cd ..
|
32
|
-
rm -rf ruby-1.8.7-p334*
|
33
|
-
|
34
|
-
# Install RubyGems 1.7.2
|
35
|
-
wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
|
36
|
-
tar xzf rubygems-1.7.2.tgz
|
37
|
-
cd rubygems-1.7.2
|
38
|
-
/opt/ruby/bin/ruby setup.rb
|
39
|
-
cd ..
|
40
|
-
rm -rf rubygems-1.7.2*
|
41
|
-
|
42
|
-
# Installing chef & Puppet
|
43
|
-
/opt/ruby/bin/gem install chef --no-ri --no-rdoc
|
44
|
-
/opt/ruby/bin/gem install puppet --no-ri --no-rdoc
|
45
|
-
|
46
|
-
# Add /opt/ruby/bin to the global path as the last resort so
|
47
|
-
# Ruby, RubyGems, and Chef/Puppet are visible
|
48
|
-
echo 'PATH=$PATH:/opt/ruby/bin/'> /etc/profile.d/vagrantruby.sh
|
49
|
-
|
50
|
-
# Installing vagrant keys
|
51
|
-
mkdir /home/vagrant/.ssh
|
52
|
-
chmod 700 /home/vagrant/.ssh
|
53
|
-
cd /home/vagrant/.ssh
|
54
|
-
wget --no-check-certificate 'https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub' -O authorized_keys
|
55
|
-
chmod 600 /home/vagrant/.ssh/authorized_keys
|
56
|
-
chown -R vagrant /home/vagrant/.ssh
|
57
|
-
|
58
|
-
# Installing the virtualbox guest additions
|
59
|
-
VBOX_VERSION=$(cat /home/vagrant/.vbox_version)
|
60
|
-
cd /tmp
|
61
|
-
wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
|
62
|
-
mount -o loop VBoxGuestAdditions_$VBOX_VERSION.iso /mnt
|
63
|
-
sh /mnt/VBoxLinuxAdditions.run
|
64
|
-
umount /mnt
|
65
|
-
|
66
|
-
rm VBoxGuestAdditions_$VBOX_VERSION.iso
|
67
|
-
|
68
|
-
# Remove items used for building, since they aren't needed anymore
|
69
|
-
apt-get -y remove linux-headers-$(uname -r) build-essential
|
70
|
-
apt-get -y autoremove
|
71
|
-
|
72
|
-
# Zero out the free space to save space in the final image:
|
73
|
-
dd if=/dev/zero of=/EMPTY bs=1M
|
74
|
-
rm -f /EMPTY
|
75
|
-
|
76
|
-
# Removing leftover leases and persistent rules
|
77
|
-
echo "cleaning up dhcp leases"
|
78
|
-
rm /var/lib/dhcp3/*
|
79
|
-
|
80
|
-
# Make sure Udev doesn't block our network
|
81
|
-
# http://6.ptmc.org/?p=164
|
82
|
-
echo "cleaning up udev rules"
|
83
|
-
rm /etc/udev/rules.d/70-persistent-net.rules
|
84
|
-
mkdir /etc/udev/rules.d/70-persistent-net.rules
|
85
|
-
rm -rf /dev/.udev/
|
86
|
-
rm /lib/udev/rules.d/75-persistent-net-generator.rules
|
87
|
-
|
88
|
-
echo "Adding a 2 sec delay to the interface up, to make the dhclient happy"
|
89
|
-
echo "pre-up sleep 2" >> /etc/network/interfaces
|
90
|
-
exit
|
@@ -1,96 +0,0 @@
|
|
1
|
-
# postinstall.sh created from Mitchell's official lucid32/64 baseboxes
|
2
|
-
|
3
|
-
date > /etc/vagrant_box_build_time
|
4
|
-
|
5
|
-
# Apt-install various things necessary for Ruby, guest additions,
|
6
|
-
# etc., and remove optional things to trim down the machine.
|
7
|
-
apt-get -y update
|
8
|
-
apt-get -y upgrade
|
9
|
-
apt-get -y install linux-headers-$(uname -r) build-essential
|
10
|
-
apt-get -y install zlib1g-dev libssl-dev libreadline5-dev
|
11
|
-
apt-get clean
|
12
|
-
|
13
|
-
# Setup sudo to allow no-password sudo for "admin"
|
14
|
-
cp /etc/sudoers /etc/sudoers.orig
|
15
|
-
sed -i -e '/Defaults\s\+env_reset/a Defaults\texempt_group=admin' /etc/sudoers
|
16
|
-
sed -i -e 's/%admin ALL=(ALL) ALL/%admin ALL=NOPASSWD:ALL/g' /etc/sudoers
|
17
|
-
|
18
|
-
# Install NFS client
|
19
|
-
apt-get -y install nfs-common
|
20
|
-
|
21
|
-
# Install Ruby from source in /opt so that users of Vagrant
|
22
|
-
# can install their own Rubies using packages or however.
|
23
|
-
# We must install the 1.8.x series since Puppet doesn't support
|
24
|
-
# Ruby 1.9 yet.
|
25
|
-
wget http://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.7-p334.tar.gz
|
26
|
-
tar xvzf ruby-1.8.7-p334.tar.gz
|
27
|
-
cd ruby-1.8.7-p334
|
28
|
-
./configure --prefix=/opt/ruby
|
29
|
-
make
|
30
|
-
make install
|
31
|
-
cd ..
|
32
|
-
rm -rf ruby-1.8.7-p334*
|
33
|
-
|
34
|
-
# Install RubyGems 1.7.2
|
35
|
-
wget http://production.cf.rubygems.org/rubygems/rubygems-1.7.2.tgz
|
36
|
-
tar xzf rubygems-1.7.2.tgz
|
37
|
-
cd rubygems-1.7.2
|
38
|
-
/opt/ruby/bin/ruby setup.rb
|
39
|
-
cd ..
|
40
|
-
rm -rf rubygems-1.7.2*
|
41
|
-
|
42
|
-
# Installing make tool for chef
|
43
|
-
apt-get install make
|
44
|
-
|
45
|
-
# Installing dependencies for chef
|
46
|
-
/opt/ruby/bin/gem install polyglot net-ssh-gateway mime-types
|
47
|
-
|
48
|
-
# Installing chef & Puppet
|
49
|
-
/opt/ruby/bin/gem install chef --no-ri --no-rdoc
|
50
|
-
/opt/ruby/bin/gem install puppet --no-ri --no-rdoc
|
51
|
-
|
52
|
-
# Add /opt/ruby/bin to the global path as the last resort so
|
53
|
-
# Ruby, RubyGems, and Chef/Puppet are visible
|
54
|
-
echo 'PATH=$PATH:/opt/ruby/bin/'> /etc/profile.d/vagrantruby.sh
|
55
|
-
|
56
|
-
# Installing vagrant keys
|
57
|
-
mkdir /home/vagrant/.ssh
|
58
|
-
chmod 700 /home/vagrant/.ssh
|
59
|
-
cd /home/vagrant/.ssh
|
60
|
-
wget --no-check-certificate 'https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub' -O authorized_keys
|
61
|
-
chmod 600 /home/vagrant/.ssh/authorized_keys
|
62
|
-
chown -R vagrant /home/vagrant/.ssh
|
63
|
-
|
64
|
-
# Installing the virtualbox guest additions
|
65
|
-
VBOX_VERSION=$(cat /home/vagrant/.vbox_version)
|
66
|
-
cd /tmp
|
67
|
-
wget http://download.virtualbox.org/virtualbox/$VBOX_VERSION/VBoxGuestAdditions_$VBOX_VERSION.iso
|
68
|
-
mount -o loop VBoxGuestAdditions_$VBOX_VERSION.iso /mnt
|
69
|
-
sh /mnt/VBoxLinuxAdditions.run
|
70
|
-
umount /mnt
|
71
|
-
|
72
|
-
rm VBoxGuestAdditions_$VBOX_VERSION.iso
|
73
|
-
|
74
|
-
# Remove items used for building, since they aren't needed anymore
|
75
|
-
apt-get -y remove linux-headers-$(uname -r) build-essential
|
76
|
-
apt-get -y autoremove
|
77
|
-
|
78
|
-
# Zero out the free space to save space in the final image:
|
79
|
-
dd if=/dev/zero of=/EMPTY bs=1M
|
80
|
-
rm -f /EMPTY
|
81
|
-
|
82
|
-
# Removing leftover leases and persistent rules
|
83
|
-
echo "cleaning up dhcp leases"
|
84
|
-
rm /var/lib/dhcp3/*
|
85
|
-
|
86
|
-
# Make sure Udev doesn't block our network
|
87
|
-
# http://6.ptmc.org/?p=164
|
88
|
-
echo "cleaning up udev rules"
|
89
|
-
rm /etc/udev/rules.d/70-persistent-net.rules
|
90
|
-
mkdir /etc/udev/rules.d/70-persistent-net.rules
|
91
|
-
rm -rf /dev/.udev/
|
92
|
-
rm /lib/udev/rules.d/75-persistent-net-generator.rules
|
93
|
-
|
94
|
-
echo "Adding a 2 sec delay to the interface up, to make the dhclient happy"
|
95
|
-
echo "pre-up sleep 2" >> /etc/network/interfaces
|
96
|
-
exit
|
@@ -1,24 +0,0 @@
|
|
1
|
-
Veewee::Session.declare({
|
2
|
-
:cpu_count => '1', :memory_size=> '384',
|
3
|
-
:disk_size => '10140', :disk_format => 'VDI', :hostiocache => 'off',
|
4
|
-
:os_type_id => 'Ubuntu_64',
|
5
|
-
:iso_file => "ubuntu-11.10-server-amd64.iso",
|
6
|
-
:iso_src => "http://releases.ubuntu.com/11.10/ubuntu-11.10-server-amd64.iso",
|
7
|
-
:iso_md5 => "f8a0112b7cb5dcd6d564dbe59f18c35f",
|
8
|
-
:iso_download_timeout => "1000",
|
9
|
-
:boot_wait => "10", :boot_cmd_sequence => [
|
10
|
-
'<Esc><Esc><Enter>',
|
11
|
-
'/install/vmlinuz noapic preseed/url=http://%IP%:%PORT%/preseed.cfg ',
|
12
|
-
'debian-installer=en_US auto locale=en_US kbd-chooser/method=us ',
|
13
|
-
'hostname=%NAME% ',
|
14
|
-
'fb=false debconf/frontend=noninteractive ',
|
15
|
-
'keyboard-configuration/layout=USA keyboard-configuration/variant=USA console-setup/ask_detect=false ',
|
16
|
-
'initrd=/install/initrd.gz -- <Enter>'
|
17
|
-
],
|
18
|
-
:kickstart_port => "7122", :kickstart_timeout => "10000", :kickstart_file => "preseed.cfg",
|
19
|
-
:ssh_login_timeout => "10000", :ssh_user => "vagrant", :ssh_password => "vagrant", :ssh_key => "",
|
20
|
-
:ssh_host_port => "7222", :ssh_guest_port => "22",
|
21
|
-
:sudo_cmd => "echo '%p'|sudo -S sh '%f'",
|
22
|
-
:shutdown_cmd => "shutdown -P now",
|
23
|
-
:postinstall_files => [ "postinstall.sh"], :postinstall_timeout => "10000"
|
24
|
-
})
|
@@ -1,87 +0,0 @@
|
|
1
|
-
## Options to set on the command line
|
2
|
-
d-i debian-installer/locale string en_US.utf8
|
3
|
-
d-i console-setup/ask_detect boolean false
|
4
|
-
d-i console-setup/layout string USA
|
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 UTC
|
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 American English
|
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 full-upgrade
|
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
|