Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 140 for vagrant (0.35 seconds)

  1. Vagrantfile

      # Switch the default share for the project root from /vagrant to
      # /elasticsearch because /vagrant is confusing when there is a project inside
      # the elasticsearch project called vagrant....
      config.vm.synced_folder '.', '/vagrant', disabled: true
      config.vm.synced_folder '.', '/elasticsearch'
      # TODO: make these syncs work for windows!!!
      config.vm.synced_folder "#{Dir.home}/.vagrant/gradle/caches/jars-3", "/root/.gradle/caches/jars-3",
    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/VagrantMachine.java

    import java.nio.file.Paths;
    import java.util.Arrays;
    import java.util.Objects;
    import java.util.function.UnaryOperator;
    
    /**
     * An helper to manage a vagrant box.
     *
     * This is created alongside a {@link VagrantExtension} for a project to manage starting and
     * stopping a single vagrant box.
     */
    public class VagrantMachine {
    
        private final VagrantExtension extension;
        private final Provider<ReaperService> reaperServiceProvider;
    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)
  3. .ci/scripts/packaging-test.sh

      # This ultimately needs to be fixed at the image level - see infra
      # issue 15654.
      sudo mv /etc/sysctl.d/99-gce.conf /etc/sysctl.d/98-gce.conf
    fi
    
    # Required by bats
    sudo touch /etc/is_vagrant_vm
    sudo useradd vagrant
    
    set -e
    
    . .ci/java-versions.properties
    RUNTIME_JAVA_HOME=$HOME/.java/$ES_RUNTIME_JAVA
    BUILD_JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
    
    rm -Rfv $HOME/.gradle/init.d/ && mkdir -p $HOME/.gradle/init.d
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

            VagrantExtension vagrant = project.getExtensions().getByType(VagrantExtension.class);
            vagrant.setBox(box);
    
            vagrant.vmEnv("SYSTEM_JAVA_HOME", convertPath(project, vagrant, systemJdkProvider, "", ""));
            // set java home for gradle to use. package tests will overwrite/remove this for each test case
            vagrant.vmEnv("JAVA_HOME", convertPath(project, vagrant, gradleJdkProvider, "", ""));
    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)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantBasePlugin.java

                        .count()
                );
        }
    
        /**
         * Check vagrant and virtualbox versions, if any vagrant test tasks will be run.
         */
        static class VagrantSetupCheckerPlugin implements Plugin<Project> {
    
            private static final Pattern VAGRANT_VERSION = Pattern.compile("Vagrant (\\d+\\.\\d+\\.\\d+)");
            private static final Pattern VIRTUAL_BOX_VERSION = Pattern.compile("(\\d+\\.\\d+)");
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.1K bytes
    - Click Count (0)
  6. TESTING.asciidoc

    them. This is a bug in vagrant. See the instructions here for how to work
    around it:
    https://github.com/mitchellh/vagrant/issues/4479
    
    Some vagrant commands will work on all VMs at once:
    
    ------------------
    vagrant halt
    vagrant destroy -f
    ------------------
    
    `vagrant up` would normally start all the VMs but we've prevented that because
    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)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/GradleDistroTestTask.java

    import org.elasticsearch.gradle.internal.vagrant.VagrantShellTask;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.options.Option;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    import static org.elasticsearch.gradle.internal.vagrant.VagrantMachine.convertLinuxPath;
    import static org.elasticsearch.gradle.internal.vagrant.VagrantMachine.convertWindowsPath;
    
    /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  8. .ci/os.sh

      # This ultimately needs to be fixed at the image level - see infra
      # issue 15654.
      sudo mv /etc/sysctl.d/99-gce.conf /etc/sysctl.d/98-gce.conf
    fi
    
    # Required by bats
    sudo touch /etc/is_vagrant_vm
    sudo useradd vagrant
    
    set -e
    
    . .ci/java-versions.properties
    RUNTIME_JAVA_HOME=$HOME/.java/$ES_RUNTIME_JAVA
    BUILD_JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
    
    rm -Rfv $HOME/.gradle/init.d/ && mkdir -p $HOME/.gradle/init.d
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  9. .gitignore

    .netrwhist
    
    # cscope-related files
    cscope.*
    
    # Go test binaries
    *.test
    /hack/.test-cmd-auth
    
    # JUnit test output from ginkgo e2e tests
    /junit*.xml
    
    # Mercurial files
    **/.hg
    **/.hg*
    
    # Vagrant
    .vagrant
    network_closure.sh
    
    # Local cluster env variables
    /cluster/env.sh
    
    # Compiled binaries in third_party
    /third_party/pkg
    
    # Also ignore etcd installed by hack/install-etcd.sh
    /third_party/etcd*
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Mar 17 02:28:41 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  10. .gitignore

    build-eclipse/
    
    # netbeans files
    nb-configuration.xml
    nbactions.xml
    
    # gradle stuff
    .gradle/
    build/
    
    # vscode stuff
    .vscode/
    
    # vs stuff
    .vs/
    
    # testing stuff
    **/.local*
    .vagrant/
    /logs/
    
    # osx stuff
    .DS_Store
    
    # default folders in which the create_bwc_index.py expects to find old es versions in
    /backwards
    /dev-tools/backwards
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 1.2K bytes
    - Click Count (0)
Back to Top