Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for virtualbox (0.13 seconds)

  1. TESTING.asciidoc

    VM running trusty by running
    `vagrant up ubuntu-1804 --provider virtualbox && vagrant ssh ubuntu-1804`.
    
    === Testing packaging on Windows
    
    The packaging tests also support Windows Server 2012R2 and Windows Server 2016.
    Unfortunately we're not able to provide boxes for them in open source use
    because of licensing issues. Any Virtualbox image that has WinRM and Powershell
    enabled for remote users should work.
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  2. Vagrantfile

    # in compliance with, at your election, the Elastic License 2.0 or the Server
    # Side Public License, v 1.
    
    define_opts = {
      autostart: false
    }.freeze
    
    Vagrant.configure(2) do |config|
    
      config.vm.provider 'virtualbox' do |vbox|
        # Give the box more memory and cpu because our tests are beasts!
        vbox.memory = Integer(ENV['VAGRANT_MEMORY'] || 8192)
        vbox.cpus = Integer(ENV['VAGRANT_CPUS'] || 4)
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
Back to Top