This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ v up --debug | |
INFO global: Vagrant version: 1.8.0 | |
INFO global: Ruby version: 2.2.3 | |
INFO global: RubyGems version: 2.4.5.1 | |
INFO global: VAGRANT_DEFAULT_PROVIDER="vmware_fusion" | |
INFO global: VAGRANT_OLD_ENV_TMPDIR="/var/folders/n7/f_wgynqj7v32_krjxgy_65yw0000gn/T/" | |
INFO global: VAGRANT_OLD_ENV_PWD="/Users/dtehranian/Downloads/boxes/trusty-docker" | |
INFO global: VAGRANT_OLD_ENV_XPC_FLAGS="0x0" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded" | |
INFO global: VAGRANT_OLD_ENV_TERM_PROGRAM="iTerm.app" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
00:00:56.668 + packer build vcsa-55-vcenter.json | |
00:00:56.673 2014/07/09 16:44:24 Packer Version: 0.6.0 12e28f257f66299e3bb13a053bf06ccd236e7efd | |
00:00:56.673 2014/07/09 16:44:24 Packer Target OS/Arch: linux amd64 | |
00:00:56.673 2014/07/09 16:44:24 Built with Go Version: go1.2 | |
00:00:56.674 2014/07/09 16:44:24 Detected home directory from env var: /var/lib/jenkins | |
00:00:56.674 2014/07/09 16:44:24 Attempting to open config file: /var/lib/jenkins/.packerconfig | |
00:00:56.674 2014/07/09 16:44:24 Packer config: &{PluginMinPort:0 PluginMaxPort:0 Builders:map[amazon-instance:packer-builder-amazon-instance googlecompute:packer-builder-googlecompute vmware-iso:packer-builder-vmware-iso digitalocean:packer-builder-digitalocean virtualbox-ovf:packer-builder-virtualbox-ovf parallels-iso:packer-builder-parallels-iso null:packer-builder-null amazon-ebs:packer-builder-amazon-ebs amazon-chroot:packer-builder-amazon-chroot openstack:packer-builder-openstack qemu:packer-builder-qemu vmware-vmx:packer-builder-vmware-vmx docker:pack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# High-performance, native SSH implementation for Jenkins SSH slaves. Jenkins' | |
# standard turn-key SSH slave implementation uses an embedded, "pure Java" | |
# implementation of SSH (https://github.com/jenkinsci/trilead-ssh2). | |
# That standard implementation combines all of the convenience of a pure Java | |
# implementation with all of the "performance" of a pure Java implementation :P | |
# If your distributed build process generates large build artifacts like ISOs, | |
# VM images, Vagrant boxes, etc, then you will see a substantial benefit from |