Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for VERSION_ID (0.33 seconds)

  1. .ci/dockerOnLinuxExclusions

    # This file specifies the Linux OS versions on which we can't build and
    # test Docker images for some reason. These values correspond to ID and
    # VERSION_ID from /etc/os-release, and a matching value will cause the
    # Docker tests to be skipped on that OS. If /etc/os-release doesn't exist
    # (as is the case on centos-6, for example) then that OS will again be
    # excluded.
    debian-8
    opensuse-leap-15.1
    ol-7.7
    sles-12.3 # older version used in Vagrant image
    sles-12.5
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 29 23:07:12 GMT 2021
    - 615 bytes
    - Click Count (0)
  2. .ci/scripts/packaging-test.sh

            # FIXME: The base image should not have rpm installed
            sudo rm -Rf /usr/bin/rpm
            # Work around incorrect lintian version
            #  https://github.com/elastic/elasticsearch/issues/48573
            if [ $VERSION_ID == 10 ] ; then
                sudo apt-get install -y --allow-downgrades lintian=2.15.0
            fi
        fi
    else
        cat /etc/issue || true
    fi
    
    sudo bash -c 'cat > /etc/sudoers.d/elasticsearch_vars'  << SUDOERS_VARS
    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)
  3. .ci/os.sh

            # FIXME: The base image should not have rpm installed
            sudo rm -Rf /usr/bin/rpm
            # Work around incorrect lintian version
            #  https://github.com/elastic/elasticsearch/issues/48573
            if [ $VERSION_ID == 10 ] ; then
                sudo apt-get install -y --allow-downgrades lintian=2.15.0
            fi
        fi
    else
        cat /etc/issue || true
    fi
    
    sudo bash -c 'cat > /etc/sudoers.d/elasticsearch_vars'  << SUDOERS_VARS
    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)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/docker/DockerSupportService.java

                return Collections.emptyList();
            }
        }
    
        // visible for testing
        static String deriveId(Map<String, String> values) {
            return values.get("ID") + "-" + values.get("VERSION_ID");
        }
    
        // visible for testing
        static Map<String, String> parseOsRelease(final List<String> osReleaseLines) {
            final Map<String, String> values = new HashMap<>();
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 14.8K bytes
    - Click Count (0)
Back to Top