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
data/test/build_test.rb
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'lib/veewee'
|
3
|
+
|
4
|
+
class TestVeeweeBuild < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
definition_dir=File.expand_path(File.join(File.dirname(__FILE__),"definitions"))
|
7
|
+
puts definition_dir
|
8
|
+
@ve=Veewee::Environment.new({
|
9
|
+
:definition_path => [ definition_dir ],
|
10
|
+
:definition_dir => definition_dir
|
11
|
+
})
|
12
|
+
@definition_name="test_definition"
|
13
|
+
@vd=@ve.get_definition(@definition_name)
|
14
|
+
@box_name="test_definition"
|
15
|
+
@vd.postinstall_files=["_test_me.sh"]
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_virtualbox_1_build
|
19
|
+
assert_nothing_raised {
|
20
|
+
@ve.config.builders["virtualbox"].build(@definition_name,@box_name,{"auto" => true,:force => true})
|
21
|
+
}
|
22
|
+
end
|
23
|
+
|
24
|
+
# def test_virtualbox_2_ssh
|
25
|
+
#assert_nothing_raised {
|
26
|
+
#result=@ve.config.builders["virtualbox"].get_box(@box_name).ssh("who am i")
|
27
|
+
#assert_match(/root/,result.stdout)
|
28
|
+
#}
|
29
|
+
#end
|
30
|
+
#
|
31
|
+
def test_virtualbox_3_console_type
|
32
|
+
assert_nothing_raised {
|
33
|
+
@ve.config.builders["virtualbox"].get_box(@box_name).console_type('echo "bla" > console.txt<Enter>')
|
34
|
+
result=@ve.builder["virtualbox"].get_box(@box_name).ssh("cat console.txt")
|
35
|
+
assert_match(/bla/,result.stdout)
|
36
|
+
}
|
37
|
+
end
|
38
|
+
#
|
39
|
+
# def test_virtualbox_4_destroy
|
40
|
+
# assert_nothing_raised {
|
41
|
+
# @ve.config.builders["virtualbox"].get_box(@vm_name,@vd,{}).destroy({})
|
42
|
+
# }
|
43
|
+
# end
|
44
|
+
#
|
45
|
+
# def teardown
|
46
|
+
# #@ve.destroy(@vm_name,@vd)
|
47
|
+
#
|
48
|
+
# end
|
49
|
+
|
50
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'lib/veewee'
|
3
|
+
|
4
|
+
class TestVeeweeDefinition < Test::Unit::TestCase
|
5
|
+
def test_environment_load_definition
|
6
|
+
# Set the definition dir to our template dir
|
7
|
+
ve=Veewee::Environment.new({:definition_path => [ File.expand_path(File.join(File.dirname(__FILE__),"..", "templates")) ] })
|
8
|
+
vd=ve.get_definition("ubuntu-10.10-server-amd64")
|
9
|
+
assert_equal(vd.os_type_id,"Ubuntu_64")
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
echo "hello world"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
Veewee::Definition.declare({
|
2
|
+
:cpu_count => '1', :memory_size=> '256',
|
3
|
+
:disk_size => '10140', :disk_format => 'VDI', :hostiocache => 'off',
|
4
|
+
:os_type_id => 'Linux26',
|
5
|
+
:iso_file => "systemrescuecd-x86-2.0.0.iso",
|
6
|
+
:iso_src => "http://downloads.sourceforge.net/project/systemrescuecd/sysresccd-x86/2.0.0/systemrescuecd-x86-2.0.0.iso",
|
7
|
+
:iso_md5 => "51012e0bb943cff6367e5cea3a61cdbe",
|
8
|
+
# :iso_src => "http://ftp.belnet.be/packages/damnsmalllinux/current/dsl-4.4.10.iso",
|
9
|
+
# :iso_file => "dsl-4.4.10.iso",
|
10
|
+
# :iso_md5 => "5cb7e0d4506c249b78bbe0cd4695b865",
|
11
|
+
:iso_download_timeout => "1000",
|
12
|
+
:boot_wait => "3", :boot_cmd_sequence => [
|
13
|
+
'<Tab> ',
|
14
|
+
# 'setkmap=us dodhcp=eth0 dhcphostname=%NAME% ar_source=http://%IP%:%PORT%/ autoruns=0 rootpass=vagrant',
|
15
|
+
'setkmap=us dodhcp=eth0 dhcphostname=%NAME% rootpass=vagrant',
|
16
|
+
'<Enter>'
|
17
|
+
],
|
18
|
+
:kickstart_port => "7122", :kickstart_timeout => "10000",
|
19
|
+
# :kickstart_file => "autorun0",
|
20
|
+
# :kickstart_file => "autorun0",
|
21
|
+
|
22
|
+
:ssh_login_timeout => "10000", :ssh_user => "root", :ssh_password => "vagrant", :ssh_key => "",
|
23
|
+
:ssh_host_port => "7222", :ssh_guest_port => "22",
|
24
|
+
:sudo_cmd => "sh '%f'",
|
25
|
+
:shutdown_cmd => "shutdown -H",
|
26
|
+
:postinstall_files => [ ], :postinstall_timeout => "10000"
|
27
|
+
})
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'lib/veewee'
|
3
|
+
require 'tempfile'
|
4
|
+
|
5
|
+
class TestVeeweeEnvironment < Test::Unit::TestCase
|
6
|
+
def test_environment_default_to_currentdir
|
7
|
+
|
8
|
+
tempdir = Dir.mktmpdir
|
9
|
+
Dir.chdir(tempdir)
|
10
|
+
tempdir=Dir.pwd
|
11
|
+
begin
|
12
|
+
ve=Veewee::Environment.new()
|
13
|
+
assert_equal(ve.cwd,tempdir)
|
14
|
+
ensure
|
15
|
+
FileUtils.remove_entry_secure tempdir
|
16
|
+
end
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
# If a cwd is passed, it take precendence over currentdir
|
21
|
+
def test_environment_override_environmentdir
|
22
|
+
|
23
|
+
# Create a temp directory to simulate a currentdir
|
24
|
+
tempdir = Dir.mktmpdir
|
25
|
+
Dir.chdir(tempdir)
|
26
|
+
tempdir=Dir.pwd
|
27
|
+
# Now change to another dir
|
28
|
+
Dir.chdir("/tmp")
|
29
|
+
begin
|
30
|
+
ve=Veewee::Environment.new({:cwd => tempdir})
|
31
|
+
assert_equal(ve.cwd,tempdir)
|
32
|
+
ensure
|
33
|
+
FileUtils.remove_entry_secure tempdir
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
# parent of isodir or definitiondir not writeable should raise an error
|
39
|
+
def test_environment_parentdir_should_be_writeable
|
40
|
+
end
|
41
|
+
|
42
|
+
# definition_dir , iso_dir by default are relative to the environmentdir
|
43
|
+
def test_environment_iso_dir_relative_to_environmentdir
|
44
|
+
|
45
|
+
# Create a temp directory to simulate a currentdir
|
46
|
+
tempdir = Dir.mktmpdir
|
47
|
+
Dir.chdir(tempdir)
|
48
|
+
tempdir=Dir.pwd
|
49
|
+
begin
|
50
|
+
ve=Veewee::Environment.new({:cwd => tempdir})
|
51
|
+
assert(ve.definition_path.include?(File.join(tempdir,"definitions")))
|
52
|
+
assert_equal(ve.iso_dir,File.join(tempdir,"iso"))
|
53
|
+
ensure
|
54
|
+
FileUtils.remove_entry_secure tempdir
|
55
|
+
end
|
56
|
+
|
57
|
+
end
|
58
|
+
|
59
|
+
# definition_dir , iso_dir by default are relative to the environmentdir
|
60
|
+
def test_environment_definition_dir_relative_to_environmentdir
|
61
|
+
# Goto top dir , to make pwd another dir
|
62
|
+
Dir.chdir("/")
|
63
|
+
ve=Veewee::Environment.new({:definition_path => ["/tmp"]})
|
64
|
+
assert_equal(ve.definition_dir,"/definitions")
|
65
|
+
end
|
66
|
+
|
67
|
+
end
|
@@ -6,11 +6,11 @@ end
|
|
6
6
|
|
7
7
|
Then /^I can ssh to "([^\"]*)" with the following credentials:$/ do |host, table|
|
8
8
|
@auth_methods ||= %w(publickey password)
|
9
|
-
|
9
|
+
|
10
10
|
credentials = table.hashes
|
11
11
|
credentials.each do |creds|
|
12
12
|
lambda {
|
13
|
-
|
13
|
+
Net::SSH.start(host, creds["username"], :password => creds["password"], :auth_methods => @auth_methods)
|
14
14
|
}.should_not raise_error(Net::SSH::AuthenticationFailed)
|
15
15
|
end
|
16
16
|
end
|
@@ -18,24 +18,24 @@ end
|
|
18
18
|
Then /^I can ssh to the following hosts with these credentials:$/ do |table|
|
19
19
|
@keys ||= []
|
20
20
|
@auth_methods ||= %w(password)
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
# initialize a list of keys and auth methods for just this
|
25
|
-
#
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
# you can pass in a keyfile in the
|
30
|
-
if
|
31
|
-
|
32
|
-
|
21
|
+
environment_details = table.hashes
|
22
|
+
|
23
|
+
environment_details.each do |environment|
|
24
|
+
# initialize a list of keys and auth methods for just this environment, as
|
25
|
+
# environment can have environment-specific keys mixed with global keys
|
26
|
+
environment_keys = Array.new(@keys)
|
27
|
+
environment_auth_methods = Array.new(@auth_methods)
|
28
|
+
|
29
|
+
# you can pass in a keyfile in the environment details, so we need to
|
30
|
+
if environment["keyfile"]
|
31
|
+
environment_keys << environment["keyfile"]
|
32
|
+
environment_auth_methods << "publickey"
|
33
33
|
end
|
34
|
-
|
34
|
+
|
35
35
|
lambda {
|
36
|
-
|
37
|
-
|
38
|
-
|
36
|
+
Net::SSH.start(environment["hostname"], environment["username"], :password => environment["password"],
|
37
|
+
:auth_methods => environment_auth_methods,
|
38
|
+
:keys => environment_keys)
|
39
39
|
}.should_not raise_error(Net::SSH::AuthenticationFailed)
|
40
40
|
end
|
41
41
|
end
|
@@ -56,36 +56,36 @@ end
|
|
56
56
|
When /^I ssh to "([^\"]*)" with the following credentials:$/ do |hostname, table|
|
57
57
|
@keys = []
|
58
58
|
@auth_methods ||= %w(password)
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
if
|
63
|
-
|
64
|
-
|
59
|
+
environment = table.hashes.first
|
60
|
+
environment_keys = Array.new(@keys)
|
61
|
+
environment_auth_methods = Array.new(@auth_methods)
|
62
|
+
if environment["keyfile"]
|
63
|
+
environment_keys << environment["keyfile"]
|
64
|
+
environment_auth_methods << "publickey"
|
65
65
|
end
|
66
|
-
|
67
|
-
if
|
68
|
-
|
66
|
+
environment_port=ENV['VEEWEE_SSH_PORT'] || 7222
|
67
|
+
if environment["port"]
|
68
|
+
environment_port=environment["port"]
|
69
69
|
end
|
70
|
-
|
70
|
+
|
71
71
|
|
72
72
|
lambda {
|
73
|
-
|
74
|
-
|
73
|
+
# This is the list of authorization methods to try. It defaults to “publickey”, “hostbased”, “password”, and “keyboard-interactive”. (These are also the only authorization methods that are supported.) If
|
74
|
+
# http://net-ssh.rubyforge.org/ssh/v1/chapter-2.html
|
75
75
|
key_auth_tried = false
|
76
|
-
ssh_options = {:password =>
|
76
|
+
ssh_options = {:password => environment["password"], :auth_methods => environment_auth_methods, :port => environment_port, :keys => environment_keys}
|
77
77
|
# ssh_options[:verbose] => :debug
|
78
78
|
begin
|
79
79
|
print "."
|
80
|
-
@connection = Net::SSH.start(
|
80
|
+
@connection = Net::SSH.start(environment["hostname"], environment["username"], ssh_options)
|
81
81
|
rescue Net::SSH::AuthenticationFailed
|
82
82
|
ssh_options[:keys] = Array.new([File.join(File.dirname(__FILE__),'./../../vagrant')])
|
83
83
|
ssh_options.delete(:password)
|
84
84
|
ssh_options[:auth_methods] = ['publickey']
|
85
85
|
if key_auth_tried
|
86
|
-
|
86
|
+
raise
|
87
87
|
else
|
88
|
-
|
88
|
+
key_auth_tried = true
|
89
89
|
retry
|
90
90
|
end
|
91
91
|
rescue Net::SSH::Disconnect, Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::ECONNABORTED, Errno::ECONNRESET, Errno::ENETUNREACH
|
@@ -95,46 +95,46 @@ When /^I ssh to "([^\"]*)" with the following credentials:$/ do |hostname, table
|
|
95
95
|
end
|
96
96
|
|
97
97
|
#
|
98
|
-
When /^I run "([^\"]*)"$/ do |command|
|
98
|
+
When /^I run "([^\"]*)"$/ do |command|
|
99
99
|
@stdout=nil
|
100
100
|
@stderr=nil
|
101
101
|
@status=-9999
|
102
102
|
channel = @connection.open_channel do |ch|
|
103
|
-
|
103
|
+
ch.request_pty do |ch, success|
|
104
104
|
if success
|
105
|
-
#
|
106
|
-
|
107
|
-
#
|
108
|
-
|
109
|
-
|
105
|
+
# puts "pty successfully obtained"
|
106
|
+
else
|
107
|
+
# puts "could not obtain pty"
|
108
|
+
end
|
109
|
+
end
|
110
110
|
ch.exec "#{command}" do |ch, success|
|
111
|
-
|
111
|
+
raise "could not execute command" unless success
|
112
112
|
|
113
|
-
|
113
|
+
# "on_data" is called when the process writes something to stdout
|
114
114
|
ch.on_data do |c, data|
|
115
115
|
if @stdout.nil?
|
116
116
|
@stdout=data
|
117
|
-
else
|
117
|
+
else
|
118
118
|
@stdout+=data
|
119
119
|
end
|
120
120
|
end
|
121
121
|
|
122
122
|
# "on_extended_data" is called when the process writes something to stderr
|
123
123
|
ch.on_extended_data do |c, type, data|
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
124
|
+
if @stderr.nil?
|
125
|
+
@stderr=data
|
126
|
+
else
|
127
|
+
@stderr+=data
|
128
|
+
end
|
129
129
|
end
|
130
|
-
|
130
|
+
|
131
131
|
#exit code
|
132
132
|
#http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/a806b0f5dae4e1e2
|
133
133
|
channel.on_request("exit-status") do |ch, data|
|
134
134
|
exit_code = data.read_long
|
135
135
|
@status=exit_code
|
136
136
|
end
|
137
|
-
|
137
|
+
|
138
138
|
channel.on_request("exit-signal") do |ch, data|
|
139
139
|
puts "SIGNAL: #{data.read_long}"
|
140
140
|
end
|
@@ -160,7 +160,7 @@ When /^I run "([^\"]*)"$/ do |command|
|
|
160
160
|
end
|
161
161
|
puts @output
|
162
162
|
|
163
|
-
|
163
|
+
#@output = @connection.exec!(command)
|
164
164
|
|
165
165
|
end
|
166
166
|
|
data/validation/vagrant.feature
CHANGED
@@ -2,51 +2,67 @@ Feature: vagrant box validation
|
|
2
2
|
As a valid vagrant box
|
3
3
|
I need to comply to a set of rules
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
Scenario: Checking
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
5
|
+
@vmfusion @virtualbox @kvm
|
6
|
+
Scenario: Valid definition
|
7
|
+
Given a veeweebox based on definition
|
8
|
+
When I ssh to veeweebox with the following credentials:
|
9
|
+
| username| password |
|
10
|
+
| vagrant | vagrant |
|
11
|
+
And I run "whoami"
|
12
|
+
Then I should see "vagrant" in the output
|
13
|
+
|
14
|
+
@vmfusion @virtualbox @kvm
|
15
|
+
Scenario: Checking login
|
16
|
+
When I ssh to "127.0.0.1" with the following credentials:
|
17
|
+
| username| password |
|
18
|
+
| vagrant | vagrant |
|
19
|
+
And I run "whoami"
|
20
|
+
Then I should see "vagrant" in the output
|
21
|
+
|
22
|
+
@vmfusion @virtualbox @kvm
|
23
|
+
Scenario: Checking sudo
|
24
|
+
When I ssh to "127.0.0.1" with the following credentials:
|
25
|
+
| username| password |
|
26
|
+
| vagrant | vagrant |
|
27
|
+
And I run "sudo whoami"
|
28
|
+
Then I should see "root" in the output
|
29
|
+
|
30
|
+
@vmfusion @virtualbox @kvm
|
31
|
+
Scenario: Checking ruby
|
32
|
+
When I ssh to "127.0.0.1" with the following credentials:
|
33
|
+
| username| password |
|
34
|
+
| vagrant | vagrant |
|
35
|
+
And I run ". /etc/profile ;ruby --version 2> /dev/null 1> /dev/null; echo $?"
|
36
|
+
Then I should see "0" in the output
|
37
|
+
|
38
|
+
@vmfusion @virtualbox @kvm
|
39
|
+
Scenario: Checking gem
|
40
|
+
When I ssh to "127.0.0.1" with the following credentials:
|
41
|
+
| username| password |
|
42
|
+
| vagrant | vagrant |
|
43
|
+
And I run ". /etc/profile; gem --version 2> /dev/null 1> /dev/null ; echo $?"
|
44
|
+
Then I should see "0" in the output
|
45
|
+
|
46
|
+
@vmfusion @virtualbox @kvm
|
47
|
+
Scenario: Checking chef
|
48
|
+
When I ssh to "127.0.0.1" with the following credentials:
|
49
|
+
| username| password |
|
50
|
+
| vagrant | vagrant |
|
51
|
+
And I run ". /etc/profile ;chef-client --version 2> /dev/null 1>/dev/null; echo $?"
|
52
|
+
Then I should see "0" in the output
|
53
|
+
|
54
|
+
@vmfusion @virtualbox @kvm
|
55
|
+
Scenario: Checking puppet
|
56
|
+
When I ssh to "127.0.0.1" with the following credentials:
|
57
|
+
| username| password |
|
58
|
+
| vagrant | vagrant |
|
59
|
+
And I run ". /etc/profile ; puppet --version 2> /dev/null 1>/dev/null; echo $?"
|
60
|
+
Then I should see "0" in the output
|
61
|
+
|
62
|
+
@vagrant
|
63
|
+
Scenario: Checking shared folders
|
64
|
+
When I ssh to "127.0.0.1" with the following credentials:
|
65
|
+
| username| password |keyfile |
|
66
|
+
| vagrant | vagrant | vagrant-private.key |
|
67
|
+
And I run "mount|grep veewee-validation"
|
68
|
+
Then I should see "veewee-validation" in the output
|