From d6e08d8d25ecac0bf7e1ee7895474a4dfe357d10 Mon Sep 17 00:00:00 2001 From: Olivier Sallou Date: Tue, 13 Aug 2013 09:00:11 +0200 Subject: [PATCH] add sample virtualbox manifest --- manifests/virtualbox.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 manifests/virtualbox.json diff --git a/manifests/virtualbox.json b/manifests/virtualbox.json new file mode 100644 index 0000000..481d5c5 --- /dev/null +++ b/manifests/virtualbox.json @@ -0,0 +1,37 @@ +{ + "provider" : "virtualbox", + "virtualization": "ide", + + "bootstrapper": { + "mount_dir": "/mnt/target" + }, + "image": { + "name" : "debian-{release}-{architecture}-{virtualization}-{%y}{%m}{%d}", + "description": "Debian {release} {architecture} ({virtualization})" + }, + "system": { + "release" : "wheezy", + "architecture": "amd64", + "timezone" : "UTC", + "locale" : "en_US", + "charmap" : "UTF-8", + "mirror" : "http://ftp.fr.debian.org/debian/" + }, + "volume": { + "backing" : "raw", + "filesystem": "ext4", + "size" : 1024, + "loopback_dir" : "/tmp" + }, + "plugins": { + "user_packages": { + "enabled": true, + "repo": [ "apache2" ], + "local": [] + }, + "root_password": { + "enabled": true, + "password": "test" + } + } +}