[Bug 244849] [NEW PORT] sysutils/beats7

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Thu May 7 07:55:59 UTC 2020


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=244849

--- Comment #19 from Regis A. Despres <regis.despres at gmail.com> ---
(In reply to Patrice from comment #18)
`vagrant init something` create the vagrantfile you should not even opening it
Anyway mine is slightly modified like that:

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
config.vagrant.plugins = ["vagrant-disksize"]
config.vm.define "bsd-12.1-STABLE" do |bsd|
    bsd.vm.box = "freebsd/FreeBSD-12.1-STABLE"
    bsd.disksize.size = '50GB'
    bsd.ssh.shell = "sh"
    bsd.vm.provider :virtualbox do |v|
      v.customize ["modifyvm", :id, "--memory", 2048]
      v.customize ["modifyvm", :id, "--name", "bsd-12.1-STABLE"]
    end
  end
end

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list