diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-26 10:32:28 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-26 10:32:28 +0000 |
commit | cdf1cf62402ff78b7a50c9223e8910a0bbeb7eae (patch) | |
tree | 649024a03370027b056ceeb8689931553ce84467 /release | |
parent | c4543695916637d8ed322501b4ebc85906be5672 (diff) | |
download | FreeBSD-src-cdf1cf62402ff78b7a50c9223e8910a0bbeb7eae.zip FreeBSD-src-cdf1cf62402ff78b7a50c9223e8910a0bbeb7eae.tar.gz |
be nice and tell the user when the installation has completed successfully
so they don't just come back to a menu again 2 hours later with no idea
what happened with the operation(s) they had in progress.
Diffstat (limited to 'release')
-rw-r--r-- | release/sysinstall/install.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c index d09cbee..fad31d7 100644 --- a/release/sysinstall/install.c +++ b/release/sysinstall/install.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: install.c,v 1.57 1995/05/26 08:58:32 jkh Exp $ + * $Id: install.c,v 1.58 1995/05/26 10:20:46 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -227,6 +227,7 @@ installFinal(void) configSysconfig(); configResolv(); alreadyDone = TRUE; + msgConfirm("Installation completed successfully.\nHit return now to go back to the main menu."); SystemWasInstalled = TRUE; } |