Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0C1FF200CE1 for ; Thu, 31 Aug 2017 09:17:13 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 08E21169763; Thu, 31 Aug 2017 07:17:13 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 4ECFF167AD8 for ; Thu, 31 Aug 2017 09:17:12 +0200 (CEST) Received: (qmail 52440 invoked by uid 500); 31 Aug 2017 07:17:11 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 52431 invoked by uid 99); 31 Aug 2017 07:17:11 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 31 Aug 2017 07:17:11 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id ACA4F81752; Thu, 31 Aug 2017 07:17:08 +0000 (UTC) Date: Thu, 31 Aug 2017 07:17:08 +0000 To: "commits@arrow.apache.org" Subject: [arrow-dist] branch master updated: ARROW-1439: Automate updating RPM in RPM build MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <150416382881.23401.4903738464003516952@gitbox.apache.org> From: uwe@apache.org Reply-To: "commits@arrow.apache.org" X-Git-Host: gitbox.apache.org X-Git-Repo: arrow-dist X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 472fc14360ab060d8591b8ba82a50628b2c1e055 X-Git-Newrev: 20a54fcda19be11b9d2b6a938dd51c0a27f9143f X-Git-Rev: 20a54fcda19be11b9d2b6a938dd51c0a27f9143f X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated archived-at: Thu, 31 Aug 2017 07:17:13 -0000 This is an automated email from the ASF dual-hosted git repository. uwe pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/arrow-dist.git The following commit(s) were added to refs/heads/master by this push: new 20a54fc ARROW-1439: Automate updating RPM in RPM build 20a54fc is described below commit 20a54fcda19be11b9d2b6a938dd51c0a27f9143f Author: Kouhei Sutou AuthorDate: Thu Aug 31 16:17:07 2017 +0900 ARROW-1439: Automate updating RPM in RPM build --- cpp-linux/yum/centos-6/Dockerfile | 2 +- cpp-linux/yum/centos-7/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp-linux/yum/centos-6/Dockerfile b/cpp-linux/yum/centos-6/Dockerfile index 5e83542..790e2e9 100644 --- a/cpp-linux/yum/centos-6/Dockerfile +++ b/cpp-linux/yum/centos-6/Dockerfile @@ -25,7 +25,7 @@ ENV \ RUN \ quiet=$([ "${DEBUG}" = "yes" ] || echo "--quiet") && \ - yum update ${quiet} && \ + yum update -y ${quiet} && \ yum install -y ${quiet} \ centos-release-scl \ epel-release && \ diff --git a/cpp-linux/yum/centos-7/Dockerfile b/cpp-linux/yum/centos-7/Dockerfile index c627699..f4cc61e 100644 --- a/cpp-linux/yum/centos-7/Dockerfile +++ b/cpp-linux/yum/centos-7/Dockerfile @@ -21,7 +21,7 @@ ARG DEBUG RUN \ quiet=$([ "${DEBUG}" = "yes" ] || echo "--quiet") && \ - yum update ${quiet} && \ + yum update -y ${quiet} && \ yum install -y ${quiet} epel-release && \ yum groupinstall -y ${quiet} "Development Tools" && \ yum install -y ${quiet} \ -- To stop receiving notification emails like this one, please contact ['"commits@arrow.apache.org" '].