Deleted Added
sdiff udiff text old ( 209553 ) new ( 211485 )
full compact
1#!/bin/sh
2# $FreeBSD: head/usr.sbin/pc-sysinstall/conf/pc-sysinstall.conf 209553 2010-06-27 17:04:03Z imp $
3# Configuration options for pc-sysinstall
4
5TMPDIR="/tmp/.pc-sysinstall"
6export TMPDIR
7
8if [ ! -d "${TMPDIR}" ]
9then
10 mkdir -p ${TMPDIR}

--- 35 unchanged lines hidden (view full) ---

46# Relative to CDMNT or the FTP root
47COMPFILEDIR="extras/"
48export COMPFILEDIR
49
50# Set the component temp directory, which is relative to FSMNT
51COMPTMPDIR="/usr/.componenttmp"
52export COMPTMPDIR
53
54# Variables to set the location of installation data
55UZIP_FILE="PCBSD.ufs.uzip"
56TAR_FILE="PCBSD.tbz"
57export UZIP_FILE TAR_FILE
58
59# Locations of FreeBSD only install files
60FBSD_UZIP_FILE="fbsd-release.ufs.uzip"
61FBSD_TAR_FILE="fbsd-release.tbz"

--- 17 unchanged lines hidden ---