Skip to content

Instantly share code, notes, and snippets.

@ogredude
Created Aug 16, 2013
Embed
What would you like to do?
Fish-n-Chips:aegir2test ericf$ vagrant reload
[aegir2] Attempting graceful shutdown of VM...
[aegir2] Setting the name of the VM...
[aegir2] Clearing any previously set forwarded ports...
[aegir2] Creating shared folders metadata...
[aegir2] Clearing any previously set network interfaces...
[aegir2] Preparing network interfaces based on configuration...
[aegir2] Forwarding ports...
[aegir2] -- 22 => 2222 (adapter 1)
[aegir2] Running any VM customizations...
[aegir2] Booting VM...
[aegir2] Waiting for VM to boot. This can take a few minutes.
[aegir2] Failed to connect to VM!
Failed to connect to VM via SSH. Please verify the VM successfully booted
by looking at the VirtualBox GUI.
Fish-n-Chips:aegir2test ericf$
class Hm < Vm # VM-specific overrides of default settings
Count = 1
Basebox = "wheezy64"
Box_url = "http://dl.dropbox.com/u/937870/VMs/wheezy64.box"
Shortname = "aegir2" # Vagrant name (used for manifest name, e.g., hm.pp)
Longname = "Aegir 2" # VirtualBox name
Dir_shares = {
"profiles" => {
"host_path" => "profiles",
"guest_path" => "/var/aegir/profiles",
"nfs" => { :nfs => true,
:create => true,
:remount => true,
}
},
"aegir-up" => {
"host_path" => "shared_platforms",
"guest_path" => "/var/aegir/shared_platforms",
"nfs" => { :nfs => true,
:create => true,
:remount => true,
}
},
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment