Sha256: 790c8abc8df3a3647614afa6f0584db8ace3a3cba853c69e66463697ee3a0566
Contents?: true
Size: 408 Bytes
Versions: 6
Compression:
Stored size: 408 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure('2') do |config| # Example configuration of new VM.. config.vm.define :vagrant_ident_centos do |vagrant_host| # Box name vagrant_host.vm.box = 'gildub/fedora20' vagrant_host.vm.hostname = "vagrant_centos_ident_test" config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: [ ".git/", ".#*", "*~" ] end end
Version data entries
6 entries across 6 versions & 1 rubygems