Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 17 Dec 2012 00:17:19 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r244329 - projects/portbuild/tools
Message-ID:  <201212170017.qBH0HJ9c080259@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212170017.qBH0HJ9c080259>