From patchwork Thu Aug 21 13:26:03 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Eriksson Jonas X-Patchwork-Id: 381967 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id 6F87714009B for ; Thu, 21 Aug 2014 23:34:58 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 972BA3F8BF for ; Thu, 21 Aug 2014 15:34:56 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from eu3sys201aog104.obsmtp.com (eu3sys201aog104.obsmtp.com [207.126.148.94]) by hugin.dotsrc.org (Postfix) with ESMTPS id 5D50F3F8BF for ; Thu, 21 Aug 2014 15:34:54 +0200 (CEST) Received: from mail.maquet.com ([195.127.224.35]) (using TLSv1) by eu3sys201aob104.postini.com ([207.126.154.11]) with SMTP ID DSNKU/X1ffLXBMBqaPXXU+bGUTH1UI5NrXiL@postini.com; Thu, 21 Aug 2014 13:34:54 UTC Received: from STH006MS.servo.net (172.20.38.60) by divmailhost.stier0001 (172.19.26.2) with Microsoft SMTP Server (TLS) id 14.2.347.0; Thu, 21 Aug 2014 15:30:58 +0200 Received: from STH006MS.servo.net ([fe80::18af:4f74:2d6:2f0]) by STH006MS.servo.net ([fe80::18af:4f74:2d6:2f0%11]) with mapi id 14.01.0438.000; Thu, 21 Aug 2014 15:26:03 +0200 From: Eriksson Jonas To: "dev@oe-lite.org" Subject: [PATCH 2/2] Whitelist $SSH_AUTH_SOCK by default Thread-Topic: [PATCH 2/2] Whitelist $SSH_AUTH_SOCK by default Thread-Index: AQHPvUN0ElBk8w5k/0OKgUL96NjkFQ== Date: Thu, 21 Aug 2014 13:26:03 +0000 Message-ID: <1408627554-6455-3-git-send-email-jonas.eriksson@maquet.com> References: <1408627554-6455-1-git-send-email-jonas.eriksson@maquet.com> In-Reply-To: <1408627554-6455-1-git-send-email-jonas.eriksson@maquet.com> Accept-Language: en-US, sv-SE Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [172.20.38.10] MIME-Version: 1.0 X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org In order to by default support usage of ssh-agent when running builds, add $SSH_AUTH_SOCK to the default whitelite. This will allow ssh to communicate with the ssh-agent, and thus authenticate without prompting for the key password when using encrypted ssh keys. Signed-off-by: Jonas Eriksson --- lib/oelite/meta/meta.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/oelite/meta/meta.py b/lib/oelite/meta/meta.py index 354f081..6097d5f 100644 --- a/lib/oelite/meta/meta.py +++ b/lib/oelite/meta/meta.py @@ -65,6 +65,7 @@ OE_ENV_WHITELIST = [ "PWD", "SHELL", "TERM", + "SSH_AUTH_SOCK", ]