Skip to content

Instantly share code, notes, and snippets.

@ryanmmmmm
Created March 28, 2013 23:32
Show Gist options
  • Save ryanmmmmm/5267666 to your computer and use it in GitHub Desktop.
Save ryanmmmmm/5267666 to your computer and use it in GitHub Desktop.
pallet config.clj
(defpallet
:services
{:default {:provider "vmfest"
:user "storm"
:password "vmfest"
:default-network-type :local
:default-local-interface "vboxnet0"
:default-bridged-interface "br0"
:environment {:user {:username "storm" ; this must be "storm"
}
}
:images {:model_ubuntu_1204_64
{:description "Ubuntu 12.04 Precise Pangolin"
:os-family :ubuntu
:os-version "12.04"
:os-type-id "Ubuntu_64"
:os-64-bit true
:uuid "/Users/rmedlin/.vmfest/models/vmfest-debian-6.0.2.1-64bit-v0.3.vdi"
}
:model_ubuntu_1110_32
{:description "Ubuntu 11.10 Oneiric Ocelot"
:os-family :ubuntu
:os-version "11.10"
:os-type-id "Ubuntu"
:os-64-bit false
:uuid "/Users/rmedlin/.vmfest/models/vmfest-debian-6.0.2.1-64bit-v0.3.vdi"
}
}
:hardware-models {:small {:memory-size 512
:cpu-count 1
:vram-size 16
:accelerate-3d-enabled? true
:storage [{:name "IDE Controller"
:bus :ide
:devices [nil nil {:device-type :dvd} nil]}
{:name "SATA Controller"
:bus :sata
:devices [nil nil nil nil]
}]
:boot-mount-point ["SATA Controller" 0]
:boot-order [[2 :dvd] [1 :hard-disk]]
:utc-time true
:clipboard-mode :bidirectional}
:medium {:memory-size 2048
:cpu-count 4
:vram-size 64
:accelerate-3d-enabled? true
:storage [{:name "IDE Controller"
:bus :ide
:devices [nil nil {:device-type :dvd} nil]}
{:name "SATA Controller"
:bus :sata
:devices [nil nil nil nil]
}]
:boot-mount-point ["SATA Controller" 0]
:boot-order [[2 :dvd] [1 :hard-disk]]
:utc-time true
:clipboard-mode :bidirectional}
:large {:memory-size 8096
:cpu-count 8
:vram-size 128
:accelerate-3d-enabled? true
:storage [{:name "IDE Controller"
:bus :ide
:devices [nil nil {:device-type :dvd} nil]}
{:name "SATA Controller"
:bus :sata
:devices [nil nil nil nil]
}]
:boot-mount-point ["SATA Controller" 0]
:boot-order [[2 :dvd] [1 :hard-disk]]
:utc-time true
:clipboard-mode :bidirectional}}
:model-path "/Users/rmedlin/.vmfest/models/"
:node-path "/Users/rmedlin/.vmfest/nodes/"}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment