svn commit: r244329 - projects/portbuild/tools
Mark Linimon
linimon at FreeBSD.org
Mon Dec 17 00:17:19 UTC 2012
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
More information about the svn-src-projects
mailing list