From owner-svn-src-projects@FreeBSD.ORG Mon Dec 17 00:17:19 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE0EA24E; Mon, 17 Dec 2012 00:17:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9275C8FC0C; Mon, 17 Dec 2012 00:17:19 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qBH0HJZm080260; Mon, 17 Dec 2012 00:17:19 GMT (envelope-from linimon@svn.freebsd.org) Received: (from linimon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qBH0HJ9c080259; Mon, 17 Dec 2012 00:17:19 GMT (envelope-from linimon@svn.freebsd.org) Message-Id: <201212170017.qBH0HJ9c080259@svn.freebsd.org> From: Mark Linimon Date: Mon, 17 Dec 2012 00:17:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r244329 - projects/portbuild/tools X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Dec 2012 00:17:19 -0000 Author: linimon (doc,ports committer) Date: Mon Dec 17 00:17:18 2012 New Revision: 244329 URL: http://svnweb.freebsd.org/changeset/base/244329 Log: Turn off .ssh directory creation. It is not in the right place. Modified: projects/portbuild/tools/addarch Modified: projects/portbuild/tools/addarch ============================================================================== --- projects/portbuild/tools/addarch Mon Dec 17 00:06:20 2012 (r244328) +++ projects/portbuild/tools/addarch Mon Dec 17 00:17:18 2012 (r244329) @@ -78,14 +78,14 @@ if ! test_fs "${archfs}"; then chmod -R g+w ${archdir} || exit 1 fi -# create .ssh/ directory if it does not already exist. (duplicates 'build') -sshdir=${archdir}/.ssh -if [ ! -d ${sshdir} ]; then - echo "The ${sshdir} directory does not exist. I'll create it for you, but you will need to populate it." - mkdir -p ${sshdir} || exit 1 - chown -R ${uid}:${gid} ${sshdir} || exit 1 - chmod 700 ${sshdir} || exit 1 -fi +## create .ssh/ directory if it does not already exist. (duplicates 'build') +#sshdir=${archdir}/.ssh +#if [ ! -d ${sshdir} ]; then +# echo "The ${sshdir} directory does not exist. I'll create it for you, but you will need to populate it." +# mkdir -p ${sshdir} || exit 1 +# chown -R ${uid}:${gid} ${sshdir} || exit 1 +# chmod 700 ${sshdir} || exit 1 +#fi lockfiles=${archdir}/lockfiles if [ ! -d ${lockfiles} ]; then