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