From 72d4e91a1bc291f8c774f5ec5a02b6437a67a12b Mon Sep 17 00:00:00 2001 From: kensmith Date: Sat, 29 Dec 2007 04:52:51 +0000 Subject: Adjust the some error messages as suggested during re@ review, and adjust a comment that won't be true shortly. --- usr.sbin/sysinstall/main.c | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'usr.sbin') diff --git a/usr.sbin/sysinstall/main.c b/usr.sbin/sysinstall/main.c index bc6e1d9..dc02902 100644 --- a/usr.sbin/sysinstall/main.c +++ b/usr.sbin/sysinstall/main.c @@ -72,12 +72,19 @@ main(int argc, char **argv) return 1; } - /* If installing packages we'll grow a LOT. */ + /* + * Given what it does sysinstall (and stuff sysinstall runs like + * pkg_add) shouldn't be subject to process limits. Better to just + * let them have what they think they need than have them blow + * their brains out during an install (in sometimes strange and + * mysterious ways). + */ + rlim.rlim_cur = rlim.rlim_max = RLIM_INFINITY; if (setrlimit(RLIMIT_DATA, &rlim) != 0) - fprintf(stderr, "Warning: setrlimit() failed.\n"); + fprintf(stderr, "Warning: setrlimit() of datasize failed.\n"); if (setrlimit(RLIMIT_STACK, &rlim) != 0) - fprintf(stderr, "Warning: setrlimit() failed.\n"); + fprintf(stderr, "Warning: setrlimit() of stacksize failed.\n"); #ifdef PC98 { -- cgit v1.1