Return-Path: X-Original-To: apmail-subversion-users-archive@minotaur.apache.org Delivered-To: apmail-subversion-users-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B83629C77 for ; Fri, 8 Jun 2012 21:36:30 +0000 (UTC) Received: (qmail 98561 invoked by uid 500); 8 Jun 2012 21:36:29 -0000 Delivered-To: apmail-subversion-users-archive@subversion.apache.org Received: (qmail 98544 invoked by uid 500); 8 Jun 2012 21:36:29 -0000 Mailing-List: contact users-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@subversion.apache.org Received: (qmail 98537 invoked by uid 99); 8 Jun 2012 21:36:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Jun 2012 21:36:29 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [216.241.235.117] (HELO bby1mta02.pmc-sierra.bc.ca) (216.241.235.117) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Jun 2012 21:36:20 +0000 Received: from bby1mta02.pmc-sierra.bc.ca (localhost.pmc-sierra.bc.ca [127.0.0.1]) by localhost (Postfix) with SMTP id 1862F8E00EE for ; Fri, 8 Jun 2012 14:35:59 -0700 (PDT) Received: from q.pmc-sierra.bc.ca. (q.pmc-sierra.bc.ca [209.68.186.54]) by bby1mta02.pmc-sierra.bc.ca (Postfix) with ESMTP id 073DA8E0056 for ; Fri, 8 Jun 2012 14:35:59 -0700 (PDT) Message-ID: <4FD2703E.9070402@pmc-sierra.com> Date: Fri, 08 Jun 2012 14:35:58 -0700 From: Mattius McLaughlin Organization: PMC-Sierra User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:6.0.2) Gecko/20110902 Thunderbird/6.0.2 MIME-Version: 1.0 To: users@subversion.apache.org Subject: Environment variables in .subversion/config Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, I'd like to use a shared config file for multiple users, but I'm in a bit of a bind when it comes to ssh identity files. I'd like to have a line like [tunnels] ssh = $SVN_SSH ssh -q -i $HOME/.ssh/ssh-identity but svn cannot expand environment variables (or ~) from this file. Warning: Identity file $HOME/.ssh/ssh-identity not accessible: No such file or directory. svn: To better debug SSH connection problems, remove the -q option from 'ssh' in the [tunnels] section of your Subversion configuration file. svn: Network connection closed unexpectedly It would seem I can only have lines like [tunnels] ssh = $SVN_SSH ssh -q -i /home/user1/.ssh/ssh-identity which prevents a shared config. Has anyone run across this before? How did you get around this? Thanks --Mattius McLaughlin