Update everyone's paths to point properly into /stand/scripts.

This commit is contained in:
Jordan K. Hubbard 1995-01-28 01:18:44 +00:00
parent 9c206926ab
commit 2b868793d1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5970
6 changed files with 17 additions and 20 deletions

View File

@ -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 FLOPPY= fd0
@ -169,7 +169,7 @@ release20:
${MAKE} floppies ) ${MAKE} floppies )
EXTRADISTRIBUTIONS= secure games manpages proflibs dict info EXTRADISTRIBUTIONS= secure games manpages proflibs dict info
DISTRIBUTIONS= bin src ${EXTRADISTRIBUTIONS} DISTRIBUTIONS= bin ${EXTRADISTRIBUTIONS}
MTREEFILES= ${.CURDIR}/../etc/mtree MTREEFILES= ${.CURDIR}/../etc/mtree
jkhdist: jkhdist:

View File

@ -17,7 +17,7 @@ uname=guest
shell="/bin/csh" shell="/bin/csh"
needgentry="NO" needgentry="NO"
. /stand/miscfuncs.sh . /stand/scripts/miscfuncs.sh
######################### #########################
# Some Functions we need. # Some Functions we need.

View File

@ -13,7 +13,7 @@
# putting your name on top after doing something trivial like reindenting # putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!). # 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 if [ "${_BININST_LOADED_}" = "yes" ]; then
error "Error, $0 loaded more than once!" error "Error, $0 loaded more than once!"
@ -23,13 +23,13 @@ else
fi fi
# Grab the miscellaneous functions. # Grab the miscellaneous functions.
. /stand/miscfuncs.sh . /stand/scripts/miscfuncs.sh
# Grab the installation routines # Grab the installation routines
. /stand/instdist.sh . /stand/scripts/instdist.sh
# Grab the network setup routines # Grab the network setup routines
. /stand/netinst.sh . /stand/scripts/netinst.sh
# Deal with trigger-happy users. # Deal with trigger-happy users.
trap interrupt 1 2 15 trap interrupt 1 2 15
@ -56,7 +56,7 @@ drive and press return to continue." -1 -1
do_last_config() do_last_config()
{ {
sh /stand/setup.sh sh /stand/scripts/setup.sh
dialog --title "Auf Wiedersehen!" --msgbox \ dialog --title "Auf Wiedersehen!" --msgbox \
"Don't forget that the login name \"root\" has no password. "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 If you didn't create any users with adduser, you can at least log in

View File

@ -10,7 +10,7 @@
# putting your name on top after doing something trivial like reindenting # putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!). # 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 if [ "${_INSTINST_SH_LOADED_}" = "yes" ]; then
return 0 return 0
@ -19,7 +19,7 @@ else
fi fi
# Grab the miscellaneous functions. # Grab the miscellaneous functions.
. /stand/miscfuncs.sh . /stand/scripts/miscfuncs.sh
# Set the initial state for media installation. # Set the initial state for media installation.
media_set_defaults() media_set_defaults()

View File

@ -10,7 +10,7 @@
# putting your name on top after doing something trivial like reindenting # putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!). # 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 if [ "${_NETINST_SH_LOADED_}" = "yes" ]; then
return 0 return 0
@ -19,7 +19,7 @@ else
fi fi
# Grab the miscellaneous functions. # Grab the miscellaneous functions.
. /stand/miscfuncs.sh . /stand/scripts/miscfuncs.sh
network_set_defaults() network_set_defaults()
{ {
@ -111,9 +111,6 @@ network_setup_serial()
if dialog --title "Dial" --yesno \ if dialog --title "Dial" --yesno \
"Do you need to dial the phone or otherwise talk to the modem?" \ "Do you need to dial the phone or otherwise talk to the modem?" \
-1 -1; then -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 \ confirm \
"You may now dialog with your modem and set up the connection. "You may now dialog with your modem and set up the connection.
Be sure to disable DTR sensitivity (usually with AT&D0) or the Be sure to disable DTR sensitivity (usually with AT&D0) or the

View File

@ -13,7 +13,7 @@
# putting your name on top after doing something trivial like reindenting # putting your name on top after doing something trivial like reindenting
# it, just to make it look like you wrote it!). # 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 if [ "${_SETUP_LOADED_}" = "yes" ]; then
error "Error, $0 loaded more than once!" error "Error, $0 loaded more than once!"
@ -23,7 +23,7 @@ else
fi fi
# Grab the miscellaneous functions. # Grab the miscellaneous functions.
. /stand/miscfuncs.sh . /stand/scripts/miscfuncs.sh
setup() setup()
{ {
@ -34,7 +34,7 @@ setup()
development workstation usage. Please select one of the development workstation usage. Please select one of the
following options. When you are finished setting up your\n\ following options. When you are finished setting up your\n\
system, select \"done\". To invoke this configuration tool \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?" \ "help" "Help! What does all this mean?" \
"tzsetup" "Configure your system's time zone" \ "tzsetup" "Configure your system's time zone" \
"network" "Configure basic networking parameters" \ "network" "Configure basic networking parameters" \
@ -60,11 +60,11 @@ again, type \`/stand/setup.sh\'." -1 -1 5 \
;; ;;
user) user)
sh /stand/adduser.sh -i sh /stand/scripts/adduser.sh -i
;; ;;
guest) guest)
sh /stand/adduser.sh sh /stand/scripts/adduser.sh
;; ;;
done) done)