[go: up one dir, main page]

File: Vagrantfile

package info (click to toggle)
sorl-thumbnail 12.10.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,408 kB
  • sloc: python: 3,190; makefile: 129; sh: 11
file content (10 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
# -*- mode: ruby -*-
# vi: set ft=ruby :

VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "precise64"
  config.vm.box_url = "http://files.vagrantup.com/precise64.box"
  config.vm.provision :shell, :path => "vagrant.sh"
end