From hcatalog-commits-return-473-apmail-incubator-hcatalog-commits-archive=incubator.apache.org@incubator.apache.org Fri Sep 30 20:53:49 2011 Return-Path: X-Original-To: apmail-incubator-hcatalog-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-hcatalog-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9C5B57989 for ; Fri, 30 Sep 2011 20:53:49 +0000 (UTC) Received: (qmail 88433 invoked by uid 500); 30 Sep 2011 20:53:49 -0000 Delivered-To: apmail-incubator-hcatalog-commits-archive@incubator.apache.org Received: (qmail 88400 invoked by uid 500); 30 Sep 2011 20:53:49 -0000 Mailing-List: contact hcatalog-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hcatalog-dev@incubator.apache.org Delivered-To: mailing list hcatalog-commits@incubator.apache.org Received: (qmail 88369 invoked by uid 99); 30 Sep 2011 20:53:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Sep 2011 20:53:48 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 30 Sep 2011 20:53:45 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 7D9EC238888F; Fri, 30 Sep 2011 20:53:24 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1177827 - in /incubator/hcatalog/trunk: CHANGES.txt bin/hcat-config.sh bin/hive-config.sh bin/umaskcheck.sh scripts/hcat_server_install.sh scripts/hcat_server_start.sh scripts/hcat_server_stop.sh Date: Fri, 30 Sep 2011 20:53:24 -0000 To: hcatalog-commits@incubator.apache.org From: hashutosh@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20110930205324.7D9EC238888F@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hashutosh Date: Fri Sep 30 20:53:23 2011 New Revision: 1177827 URL: http://svn.apache.org/viewvc?rev=1177827&view=rev Log: install scripts assumes bash shell but don't set it explictly Modified: incubator/hcatalog/trunk/CHANGES.txt incubator/hcatalog/trunk/bin/hcat-config.sh incubator/hcatalog/trunk/bin/hive-config.sh incubator/hcatalog/trunk/bin/umaskcheck.sh incubator/hcatalog/trunk/scripts/hcat_server_install.sh incubator/hcatalog/trunk/scripts/hcat_server_start.sh incubator/hcatalog/trunk/scripts/hcat_server_stop.sh Modified: incubator/hcatalog/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/CHANGES.txt?rev=1177827&r1=1177826&r2=1177827&view=diff ============================================================================== --- incubator/hcatalog/trunk/CHANGES.txt (original) +++ incubator/hcatalog/trunk/CHANGES.txt Fri Sep 30 20:53:23 2011 @@ -51,6 +51,8 @@ Trunk (unreleased changes) OPTIMIZATIONS BUG FIXES + HCAT-112. install scripts assumes bash shell but don't set it explictly (hashutosh) + HCAT-100. Change references of hcat.sh to hcat in test harness (hashutosh) HCAT-78. Update notice.txt and headers and add Disclaimer.txt (hashutosh and gates via gates) Modified: incubator/hcatalog/trunk/bin/hcat-config.sh URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/bin/hcat-config.sh?rev=1177827&r1=1177826&r2=1177827&view=diff ============================================================================== --- incubator/hcatalog/trunk/bin/hcat-config.sh (original) +++ incubator/hcatalog/trunk/bin/hcat-config.sh Fri Sep 30 20:53:23 2011 @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. Modified: incubator/hcatalog/trunk/bin/hive-config.sh URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/bin/hive-config.sh?rev=1177827&r1=1177826&r2=1177827&view=diff ============================================================================== --- incubator/hcatalog/trunk/bin/hive-config.sh (original) +++ incubator/hcatalog/trunk/bin/hive-config.sh Fri Sep 30 20:53:23 2011 @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. Modified: incubator/hcatalog/trunk/bin/umaskcheck.sh URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/bin/umaskcheck.sh?rev=1177827&r1=1177826&r2=1177827&view=diff ============================================================================== --- incubator/hcatalog/trunk/bin/umaskcheck.sh (original) +++ incubator/hcatalog/trunk/bin/umaskcheck.sh Fri Sep 30 20:53:23 2011 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file Modified: incubator/hcatalog/trunk/scripts/hcat_server_install.sh URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/scripts/hcat_server_install.sh?rev=1177827&r1=1177826&r2=1177827&view=diff ============================================================================== --- incubator/hcatalog/trunk/scripts/hcat_server_install.sh (original) +++ incubator/hcatalog/trunk/scripts/hcat_server_install.sh Fri Sep 30 20:53:23 2011 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file Modified: incubator/hcatalog/trunk/scripts/hcat_server_start.sh URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/scripts/hcat_server_start.sh?rev=1177827&r1=1177826&r2=1177827&view=diff ============================================================================== --- incubator/hcatalog/trunk/scripts/hcat_server_start.sh (original) +++ incubator/hcatalog/trunk/scripts/hcat_server_start.sh Fri Sep 30 20:53:23 2011 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file Modified: incubator/hcatalog/trunk/scripts/hcat_server_stop.sh URL: http://svn.apache.org/viewvc/incubator/hcatalog/trunk/scripts/hcat_server_stop.sh?rev=1177827&r1=1177826&r2=1177827&view=diff ============================================================================== --- incubator/hcatalog/trunk/scripts/hcat_server_stop.sh (original) +++ incubator/hcatalog/trunk/scripts/hcat_server_stop.sh Fri Sep 30 20:53:23 2011 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file