svn commit: r247634 - stable/9/usr.sbin/sysinstall

Devin Teske dteske at FreeBSD.org
Sat Mar 2 16:18:41 UTC 2013


Author: dteske
Date: Sat Mar  2 16:18:40 2013
New Revision: 247634
URL: http://svnweb.freebsd.org/changeset/base/247634

Log:
  Update FTP directories to include new layout. Previously discussed with
  kensmith and others as this alleviates the need for the symbolic link upkeep
  which is currently manually maintained.

Modified:
  stable/9/usr.sbin/sysinstall/ftp.c

Modified: stable/9/usr.sbin/sysinstall/ftp.c
==============================================================================
--- stable/9/usr.sbin/sysinstall/ftp.c	Sat Mar  2 16:07:55 2013	(r247633)
+++ stable/9/usr.sbin/sysinstall/ftp.c	Sat Mar  2 16:18:40 2013	(r247634)
@@ -50,8 +50,12 @@ int FtpPort;
 
 /* List of sub directories to look for under a given FTP server. */
 const char *ftp_dirs[] = { ".", "releases/"MACHINE, "snapshots/"MACHINE,
+    "releases/"MACHINE"/"MACHINE_ARCH, "snapshots/"MACHINE"/"MACHINE_ARCH,
     "pub/FreeBSD", "pub/FreeBSD/releases/"MACHINE,
-    "pub/FreeBSD/snapshots/"MACHINE, NULL };
+    "pub/FreeBSD/snapshots/"MACHINE,
+    "pub/FreeBSD/releases/"MACHINE"/"MACHINE_ARCH,
+    "pub/FreeBSD/snapshots/"MACHINE"/"MACHINE_ARCH,
+    NULL };
 
 /* Brings up attached network device, if any - takes FTP device as arg */
 static Boolean


More information about the svn-src-all mailing list