Skip to content

Commit

Permalink
o Use correct device for Wangtek tapes.
Browse files Browse the repository at this point in the history
o Caution against use of `W' options in label/partition screens (dangerous!)
o Make various types of debugging dreck conditionalize on DEBUG flag
o Make a fake /var/db/mountdbtab file so new system doesn't complain
o Apply uniform permissions to entire /usr/X11R6 tree.
o Set erase character to ^H for all interactive commands.
o Don't panic if user exits upgrade shell, reboot.
o Document dangers of `W' options in help screens also.
  • Loading branch information
Jordan K. Hubbard authored and Jordan K. Hubbard committed Nov 8, 1995
1 parent ef27d1f commit 98617a9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions release/sysinstall/installUpgrade.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: installUpgrade.c,v 1.15 1995/11/04 11:09:03 jkh Exp $
* $Id: installUpgrade.c,v 1.16 1995/11/06 08:28:06 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
Expand Down Expand Up @@ -374,11 +374,11 @@ installUpgrade(char *str)
}
else
msgDebug("Unable to get the terminal attributes!\n");
printf("Well, good luck! When you're done, please type \"reboot\" to reboot\n"
"the new system.\n");
printf("Well, good luck! When you're done, please type \"reboot\" or exit\n"
"the shell to reboot the new system.\n");
execlp("sh", "-sh", 0);
msgDebug("Was unable to execute sh for post-upgrade shell!\n");
exit(1);
reboot(0);
/* NOTREACHED */
return 0;
}
8 changes: 4 additions & 4 deletions usr.sbin/sysinstall/installUpgrade.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: installUpgrade.c,v 1.15 1995/11/04 11:09:03 jkh Exp $
* $Id: installUpgrade.c,v 1.16 1995/11/06 08:28:06 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
Expand Down Expand Up @@ -374,11 +374,11 @@ installUpgrade(char *str)
}
else
msgDebug("Unable to get the terminal attributes!\n");
printf("Well, good luck! When you're done, please type \"reboot\" to reboot\n"
"the new system.\n");
printf("Well, good luck! When you're done, please type \"reboot\" or exit\n"
"the shell to reboot the new system.\n");
execlp("sh", "-sh", 0);
msgDebug("Was unable to execute sh for post-upgrade shell!\n");
exit(1);
reboot(0);
/* NOTREACHED */
return 0;
}

0 comments on commit 98617a9

Please sign in to comment.