diff options
| author | Jessica Clarke <jrtc27@FreeBSD.org> | 2025-02-04 17:27:00 +0000 |
|---|---|---|
| committer | Jessica Clarke <jrtc27@FreeBSD.org> | 2025-02-04 17:27:00 +0000 |
| commit | 97350075fe3a7951b7ef86a63c0a3f033dc03118 (patch) | |
| tree | eaf49c7a08a0697bd690ba4f21b66940d00ab576 /usr.sbin/bsdinstall/scripts | |
| parent | ecccb638d494f2642f1e2eae8ad932ba70567ccc (diff) | |
Diffstat (limited to 'usr.sbin/bsdinstall/scripts')
| -rwxr-xr-x | usr.sbin/bsdinstall/scripts/finalconfig | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/bsdinstall/scripts/finalconfig b/usr.sbin/bsdinstall/scripts/finalconfig index 68ee16a5330d..c7814a3b6a45 100755 --- a/usr.sbin/bsdinstall/scripts/finalconfig +++ b/usr.sbin/bsdinstall/scripts/finalconfig @@ -36,8 +36,9 @@ while true; do exec 5>&1 REVISIT=$(bsddialog --backtitle "$OSNAME Installer" \ --title "Final Configuration" --ok-label "Select" \ - --cancel-label "Finish" --default-no --menu \ + --no-cancel --menu \ "Setup of your $OSNAME system is nearly complete. You can now modify your configuration choices. After this screen, you will have an opportunity to make more complex changes using a shell." 0 0 0 \ + "Finish" "Apply configuration and exit installer" \ "Add User" "Add a user to the system" \ "Root Password" "Change root password" \ "Hostname" "Set system hostname" \ @@ -55,6 +56,9 @@ while true; do fi case "$REVISIT" in + "Finish") + break + ;; "Add User") bsdinstall adduser ;; |
