File: Vagrantfile

package info (click to toggle)
python-inotify 0.2.10-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 240 kB
  • sloc: python: 686; sh: 6; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 434 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- 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(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "ubuntu/trusty64"

  config.vm.synced_folder "..", "/inotify", 
    mount_options: ["dmode=775,fmode=775"]

  config.vm.hostname = "test-linux.vagrant"
  config.vm.provision :shell, path: "bootstrap.sh"
end