Module Name: src
Committed By: martin
Date: Sun Oct 19 09:14:51 UTC 2014
Modified Files:
src/usr.sbin/sysinst [netbsd-7]: menus.mi
Log Message:
Pull up following revision(s) (requested by snj in ticket #149):
usr.sbin/sysinst/menus.mi: revision 1.7
Make the option to abort pkgsrc fetching/extraction actually work.
Previously, if the network was not set up and you couldn't fetch
pkgsrc, you'd get stuck here, unable to make it back to the parent
menu.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.4.4.1 src/usr.sbin/sysinst/menus.mi
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/usr.sbin/sysinst/menus.mi
diff -u src/usr.sbin/sysinst/menus.mi:1.4 src/usr.sbin/sysinst/menus.mi:1.4.4.1
--- src/usr.sbin/sysinst/menus.mi:1.4 Wed Aug 6 10:03:49 2014
+++ src/usr.sbin/sysinst/menus.mi Sun Oct 19 09:14:51 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: menus.mi,v 1.4 2014/08/06 10:03:49 martin Exp $ */
+/* $NetBSD: menus.mi,v 1.4.4.1 2014/10/19 09:14:51 martin Exp $ */
/*-
* Copyright (c) 2003 The NetBSD Foundation, Inc.
@@ -593,7 +593,7 @@ menu pkgsrc, y=-4, x=0, w=70, no box, no
clean_xfer_dir ? MSG_Yes : MSG_No);},
action {process_menu(MENU_yesno, deconst(MSG_delete_xfer_file));
clean_xfer_dir = yesno; };
- option MSG_quit_pkgsrc, exit, action { yesno = 0;};
+ option MSG_quit_pkgsrc, exit, action { yesno = SET_SKIP;};
menu usersh, title MSG_User_shell, no clear;
option "/bin/sh", exit, action { ushell = "/bin/sh";};