File: Vagrantfile

package info (click to toggle)
preprepare 0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 168 kB
  • ctags: 36
  • sloc: ansic: 212; makefile: 55; sql: 37; sh: 21
file content (14 lines) | stat: -rw-r--r-- 319 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure("2") do |config|
  config.vm.box = "wheezy64"

  config.vm.provision "shell" do |s|
    s.path = "bootstrap.sh"
    s.privileged = false
  end
end