Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for Vagrantfile (0.07 seconds)

  1. Vagrantfile

    # -*- mode: ruby -*-
    # vim: ft=ruby ts=2 sw=2 sts=2 et:
    
    # This Vagrantfile exists to test packaging. Read more about its use in the
    # vagrant section in TESTING.asciidoc.
    
    # Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
    # or more contributor license agreements. Licensed under the Elastic License
    # 2.0 and the Server Side Public License, v 1; you may not use this file except
    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)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantExtension.java

            this.isWindowsVM = false;
        }
    
        @Input
        public String getBox() {
            return box.get();
        }
    
        public void setBox(String box) {
            // TODO: should verify this against the Vagrantfile, but would need to do so in afterEvaluate once vagrantfile is unmodifiable
            this.box.set(box);
        }
    
        @Input
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantMachine.java

                execSpec.setExecutable("vagrant");
                File vagrantfile = extension.getVagrantfile();
                execSpec.setEnvironment(System.getenv()); // pass through env
                execSpec.environment("VAGRANT_CWD", vagrantfile.getParentFile().toString());
                execSpec.environment("VAGRANT_VAGRANTFILE", vagrantfile.getName());
                extension.getHostEnv().forEach(execSpec::environment);
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 7.5K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

                            // have the Docker task added as a dependency. Although we control whether Docker
                            // is installed in the VM via `Vagrantfile` and we could auto-detect its presence
                            // in the VM, the test tasks e.g. `destructiveDistroTest.default-docker` are defined
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 28 21:31:21 GMT 2021
    - 23.1K bytes
    - Click Count (0)
Back to Top