From ffc32cdd866340b95d83b3d464fbf4d06a619430 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Thu, 30 Jul 2015 15:58:16 -0700 Subject: [PATCH] Allow RHEL/centos 7.0 -> 7.1.9999 to be used Fix errors that will be thrown on RHEL7.1 like: '''This script must be run on RHEL 7.0 or older and not RHEL 7.1.''' Change-Id: I4f387247b5e3e88115a7242dc5d33251663564c1 --- tools/bootstrap/CentOS | 4 ++-- tools/bootstrap/RedHatEnterpriseLinuxServer | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/bootstrap/CentOS b/tools/bootstrap/CentOS index 632c160d..6d474f02 100644 --- a/tools/bootstrap/CentOS +++ b/tools/bootstrap/CentOS @@ -1,8 +1,8 @@ # -*- sh -*- -## Bootstrap for CentOS Linux 6.0 <-> 7.1 +## Bootstrap for CentOS Linux 6.0 <-> 7.1.9999 SHORTNAME=CENTOS -MAX_RELEASE=7.1 +MAX_RELEASE=7.1.9999 MIN_RELEASE=6.0 source "$BSCONF_DIR/CommonRedHat" diff --git a/tools/bootstrap/RedHatEnterpriseLinuxServer b/tools/bootstrap/RedHatEnterpriseLinuxServer index b13e4dd6..53f6b126 100644 --- a/tools/bootstrap/RedHatEnterpriseLinuxServer +++ b/tools/bootstrap/RedHatEnterpriseLinuxServer @@ -1,8 +1,8 @@ # -*- sh -*- -## Bootstrap for Redhat Enterprise Linux 6.0 <-> 7.0 +## Bootstrap for Redhat Enterprise Linux 6.0 <-> 7.1.9999 SHORTNAME=RHEL -MAX_RELEASE=7.0 +MAX_RELEASE=7.1.9999 MIN_RELEASE=6.0 source "$BSCONF_DIR/CommonRedHat"