mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 04:13:39 +00:00
Update everyone's paths to point properly into /stand/scripts.
This commit is contained in:
parent
9c206926ab
commit
2b868793d1
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5970
@ -1,4 +1,4 @@
|
||||
# $Id: Makefile,v 1.89 1995/01/27 08:06:43 jkh Exp $
|
||||
# $Id: Makefile,v 1.90 1995/01/27 08:30:35 jkh Exp $
|
||||
#
|
||||
|
||||
FLOPPY= fd0
|
||||
@ -169,7 +169,7 @@ release20:
|
||||
${MAKE} floppies )
|
||||
|
||||
EXTRADISTRIBUTIONS= secure games manpages proflibs dict info
|
||||
DISTRIBUTIONS= bin src ${EXTRADISTRIBUTIONS}
|
||||
DISTRIBUTIONS= bin ${EXTRADISTRIBUTIONS}
|
||||
MTREEFILES= ${.CURDIR}/../etc/mtree
|
||||
|
||||
jkhdist:
|
||||
|
@ -17,7 +17,7 @@ uname=guest
|
||||
shell="/bin/csh"
|
||||
needgentry="NO"
|
||||
|
||||
. /stand/miscfuncs.sh
|
||||
. /stand/scripts/miscfuncs.sh
|
||||
|
||||
#########################
|
||||
# Some Functions we need.
|
||||
|
@ -13,7 +13,7 @@
|
||||
# putting your name on top after doing something trivial like reindenting
|
||||
# it, just to make it look like you wrote it!).
|
||||
#
|
||||
# $Id: bininst.sh,v 1.1 1995/01/14 10:28:20 jkh Exp $
|
||||
# $Id: bininst.sh,v 1.2 1995/01/14 21:08:05 jkh Exp $
|
||||
|
||||
if [ "${_BININST_LOADED_}" = "yes" ]; then
|
||||
error "Error, $0 loaded more than once!"
|
||||
@ -23,13 +23,13 @@ else
|
||||
fi
|
||||
|
||||
# Grab the miscellaneous functions.
|
||||
. /stand/miscfuncs.sh
|
||||
. /stand/scripts/miscfuncs.sh
|
||||
|
||||
# Grab the installation routines
|
||||
. /stand/instdist.sh
|
||||
. /stand/scripts/instdist.sh
|
||||
|
||||
# Grab the network setup routines
|
||||
. /stand/netinst.sh
|
||||
. /stand/scripts/netinst.sh
|
||||
|
||||
# Deal with trigger-happy users.
|
||||
trap interrupt 1 2 15
|
||||
@ -56,7 +56,7 @@ drive and press return to continue." -1 -1
|
||||
|
||||
do_last_config()
|
||||
{
|
||||
sh /stand/setup.sh
|
||||
sh /stand/scripts/setup.sh
|
||||
dialog --title "Auf Wiedersehen!" --msgbox \
|
||||
"Don't forget that the login name \"root\" has no password.
|
||||
If you didn't create any users with adduser, you can at least log in
|
||||
|
@ -10,7 +10,7 @@
|
||||
# putting your name on top after doing something trivial like reindenting
|
||||
# it, just to make it look like you wrote it!).
|
||||
#
|
||||
# $Id: instdist.sh,v 1.1 1995/01/14 07:41:47 jkh Exp $
|
||||
# $Id: instdist.sh,v 1.2 1995/01/27 07:37:53 jkh Exp $
|
||||
|
||||
if [ "${_INSTINST_SH_LOADED_}" = "yes" ]; then
|
||||
return 0
|
||||
@ -19,7 +19,7 @@ else
|
||||
fi
|
||||
|
||||
# Grab the miscellaneous functions.
|
||||
. /stand/miscfuncs.sh
|
||||
. /stand/scripts/miscfuncs.sh
|
||||
|
||||
# Set the initial state for media installation.
|
||||
media_set_defaults()
|
||||
|
@ -10,7 +10,7 @@
|
||||
# putting your name on top after doing something trivial like reindenting
|
||||
# it, just to make it look like you wrote it!).
|
||||
#
|
||||
# $Id: netinst.sh,v 1.17 1994/12/05 00:40:25 jkh Exp $
|
||||
# $Id: netinst.sh,v 1.1 1995/01/14 07:41:52 jkh Exp $
|
||||
|
||||
if [ "${_NETINST_SH_LOADED_}" = "yes" ]; then
|
||||
return 0
|
||||
@ -19,7 +19,7 @@ else
|
||||
fi
|
||||
|
||||
# Grab the miscellaneous functions.
|
||||
. /stand/miscfuncs.sh
|
||||
. /stand/scripts/miscfuncs.sh
|
||||
|
||||
network_set_defaults()
|
||||
{
|
||||
@ -111,9 +111,6 @@ network_setup_serial()
|
||||
if dialog --title "Dial" --yesno \
|
||||
"Do you need to dial the phone or otherwise talk to the modem?" \
|
||||
-1 -1; then
|
||||
mkdir -p /var/log
|
||||
touch -f /var/log/aculog > /dev/null 2>&1
|
||||
chmod 666 /var/log/aculog > /dev/null 2>&1
|
||||
confirm \
|
||||
"You may now dialog with your modem and set up the connection.
|
||||
Be sure to disable DTR sensitivity (usually with AT&D0) or the
|
||||
|
@ -13,7 +13,7 @@
|
||||
# putting your name on top after doing something trivial like reindenting
|
||||
# it, just to make it look like you wrote it!).
|
||||
#
|
||||
# $Id: bininst.sh,v 1.1 1995/01/14 10:28:20 jkh Exp $
|
||||
# $Id: setup.sh,v 1.1 1995/01/14 13:34:37 jkh Exp $
|
||||
|
||||
if [ "${_SETUP_LOADED_}" = "yes" ]; then
|
||||
error "Error, $0 loaded more than once!"
|
||||
@ -23,7 +23,7 @@ else
|
||||
fi
|
||||
|
||||
# Grab the miscellaneous functions.
|
||||
. /stand/miscfuncs.sh
|
||||
. /stand/scripts/miscfuncs.sh
|
||||
|
||||
setup()
|
||||
{
|
||||
@ -34,7 +34,7 @@ setup()
|
||||
development workstation usage. Please select one of the
|
||||
following options. When you are finished setting up your\n\
|
||||
system, select \"done\". To invoke this configuration tool \n\
|
||||
again, type \`/stand/setup.sh\'." -1 -1 5 \
|
||||
again, type \`/stand/scripts/setup.sh\'." -1 -1 5 \
|
||||
"help" "Help! What does all this mean?" \
|
||||
"tzsetup" "Configure your system's time zone" \
|
||||
"network" "Configure basic networking parameters" \
|
||||
@ -60,11 +60,11 @@ again, type \`/stand/setup.sh\'." -1 -1 5 \
|
||||
;;
|
||||
|
||||
user)
|
||||
sh /stand/adduser.sh -i
|
||||
sh /stand/scripts/adduser.sh -i
|
||||
;;
|
||||
|
||||
guest)
|
||||
sh /stand/adduser.sh
|
||||
sh /stand/scripts/adduser.sh
|
||||
;;
|
||||
|
||||
done)
|
||||
|
Loading…
Reference in New Issue
Block a user