diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-11-08 05:38:27 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-11-08 05:38:27 +0000 |
commit | 0108501f0f0cf1ff9ee2052948c88c9609c8e396 (patch) | |
tree | 6e3e6e140d77494d6e8205fb00db6bd5b660e96f /usr.sbin | |
parent | c3bfbfc0aa2384d6f6134b4a4fb0a61fa4c5077e (diff) | |
download | src-0108501f0f0cf1ff9ee2052948c88c9609c8e396.tar.gz src-0108501f0f0cf1ff9ee2052948c88c9609c8e396.zip |
1. Eliminate the sendmail.cw bogon again. Peter fixed it correctly.
2. Preload the ldconfig cache before calling X setup.
Notes
Notes:
svn path=/head/; revision=19526
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sade/config.c | 3 | ||||
-rw-r--r-- | usr.sbin/sade/install.c | 6 | ||||
-rw-r--r-- | usr.sbin/sysinstall/config.c | 3 | ||||
-rw-r--r-- | usr.sbin/sysinstall/install.c | 6 |
4 files changed, 6 insertions, 12 deletions
diff --git a/usr.sbin/sade/config.c b/usr.sbin/sade/config.c index ef616430c4c0..0ad3bec39204 100644 --- a/usr.sbin/sade/config.c +++ b/usr.sbin/sade/config.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: config.c,v 1.55 1996/11/07 15:35:42 jkh Exp $ + * $Id: config.c,v 1.56 1996/11/07 16:34:12 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -359,6 +359,7 @@ configXFree86(dialogMenuItem *self) { if (file_executable("/usr/X11R6/bin/XF86Setup")) { dialog_clear(); + systemExecute("/sbin/ldconfig /usr/lib /usr/X11R6/lib /usr/local/lib /compat/lib"); systemExecute("/usr/X11R6/bin/XF86Setup"); return DITEM_SUCCESS | DITEM_RESTORE; } diff --git a/usr.sbin/sade/install.c b/usr.sbin/sade/install.c index 6e82d7076ebc..52badb1fcc9a 100644 --- a/usr.sbin/sade/install.c +++ b/usr.sbin/sade/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.135 1996/11/04 12:56:22 jkh Exp $ + * $Id: install.c,v 1.136 1996/11/07 15:45:59 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -650,10 +650,6 @@ installFixup(dialogMenuItem *self) Mkdir("/var/db"); creat("/var/db/mountdtab", 0644); - /* BOGON #4: We need a default /etc/sendmail.cw right now */ - if (!file_readable("/etc/sendmail.cw")) - vsystem("touch /etc/sendmail.cw"); - /* Now run all the mtree stuff to fix things up */ vsystem("mtree -deU -f /etc/mtree/BSD.root.dist -p /"); vsystem("mtree -deU -f /etc/mtree/BSD.var.dist -p /var"); diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c index ef616430c4c0..0ad3bec39204 100644 --- a/usr.sbin/sysinstall/config.c +++ b/usr.sbin/sysinstall/config.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: config.c,v 1.55 1996/11/07 15:35:42 jkh Exp $ + * $Id: config.c,v 1.56 1996/11/07 16:34:12 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -359,6 +359,7 @@ configXFree86(dialogMenuItem *self) { if (file_executable("/usr/X11R6/bin/XF86Setup")) { dialog_clear(); + systemExecute("/sbin/ldconfig /usr/lib /usr/X11R6/lib /usr/local/lib /compat/lib"); systemExecute("/usr/X11R6/bin/XF86Setup"); return DITEM_SUCCESS | DITEM_RESTORE; } diff --git a/usr.sbin/sysinstall/install.c b/usr.sbin/sysinstall/install.c index 6e82d7076ebc..52badb1fcc9a 100644 --- a/usr.sbin/sysinstall/install.c +++ b/usr.sbin/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.135 1996/11/04 12:56:22 jkh Exp $ + * $Id: install.c,v 1.136 1996/11/07 15:45:59 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -650,10 +650,6 @@ installFixup(dialogMenuItem *self) Mkdir("/var/db"); creat("/var/db/mountdtab", 0644); - /* BOGON #4: We need a default /etc/sendmail.cw right now */ - if (!file_readable("/etc/sendmail.cw")) - vsystem("touch /etc/sendmail.cw"); - /* Now run all the mtree stuff to fix things up */ vsystem("mtree -deU -f /etc/mtree/BSD.root.dist -p /"); vsystem("mtree -deU -f /etc/mtree/BSD.var.dist -p /var"); |