~xibo-maintainers/xibo/tempel

253 by Dan Garner
Completed migration to Git.
1
# -*- mode: ruby -*-
2
# vi: set ft=ruby :
3
4
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
5
VAGRANTFILE_API_VERSION = "2"
6
7
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| 
8
  config.vm.box = "avenuefactory/lamp"
454.1.137 by Dan Garner
Missing distinction between Module System Files and Module Files.
9
  config.vm.network :public_network, type: "dhcp"
454.1.127 by dasgarner
Correct folder permissions for using Vagrant under Ubuntu.
10
  config.vm.synced_folder "./", "/var/www", id: "vagrant-root",
11
    owner: "vagrant",
12
    group: "www-data",
13
    mount_options: ["dmode=775,fmode=664"]
253 by Dan Garner
Completed migration to Git.
14
end