Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7C5A1CF1F for ; Wed, 19 Jun 2013 00:35:26 +0000 (UTC) Received: (qmail 47874 invoked by uid 500); 19 Jun 2013 00:35:26 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 47808 invoked by uid 500); 19 Jun 2013 00:35:26 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 47801 invoked by uid 99); 19 Jun 2013 00:35:26 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jun 2013 00:35:26 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 1F6358A7EAD; Wed, 19 Jun 2013 00:35:26 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: yasker@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/master to 5d70e19 Date: Wed, 19 Jun 2013 00:35:26 +0000 (UTC) Updated Branches: refs/heads/master a16af4380 -> 5d70e1928 CLOUDSTACK-2534: Modify id_rsa.cloud's permission to 600 644 is too open for ssh. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/5d70e192 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/5d70e192 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/5d70e192 Branch: refs/heads/master Commit: 5d70e1928c19dc18b0479354b24649081f79c277 Parents: a16af43 Author: Sheng Yang Authored: Tue Jun 18 17:34:21 2013 -0700 Committer: Sheng Yang Committed: Tue Jun 18 17:34:21 2013 -0700 ---------------------------------------------------------------------- scripts/vm/systemvm/injectkeys.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/5d70e192/scripts/vm/systemvm/injectkeys.sh ---------------------------------------------------------------------- diff --git a/scripts/vm/systemvm/injectkeys.sh b/scripts/vm/systemvm/injectkeys.sh index c17a3c6..f33aa50 100755 --- a/scripts/vm/systemvm/injectkeys.sh +++ b/scripts/vm/systemvm/injectkeys.sh @@ -65,7 +65,7 @@ copy_priv_key() { local newprivkey=$1 diff -q $newprivkey $(dirname $0)/id_rsa.cloud && return 0 $SUDO cp -fb $newprivkey $(dirname $0)/id_rsa.cloud - $SUDO chmod 644 $(dirname $0)/id_rsa.cloud + $SUDO chmod 600 $(dirname $0)/id_rsa.cloud return $? }