aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/sysinstall/config.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1995-05-29 11:01:42 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1995-05-29 11:01:42 +0000
commit8fdde019ada76e1a9e88d11b36c60ca95a38362d (patch)
treef98b313f289088a0f9384387c68ec7516031cc7e /usr.sbin/sysinstall/config.c
parentd802eeef316094ded4224e2836462ac1a288407b (diff)
Notes
Diffstat (limited to 'usr.sbin/sysinstall/config.c')
-rw-r--r--usr.sbin/sysinstall/config.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c
index c791550118e3..a51f9964d497 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.11 1995/05/28 09:31:29 jkh Exp $
+ * $Id: config.c,v 1.12 1995/05/28 20:28:07 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -174,7 +174,7 @@ configFstab(void)
}
/* Go for the burn */
- msgDebug("Generating /etc/fstab file");
+ msgDebug("Generating /etc/fstab file\n");
for (i = 0; i < nchunks; i++) {
fprintf(fstab, "/dev/%s\t\t\t%s\t\t%s %s %d %d\n", nameof(chunk_list[i]), mount_point(chunk_list[i]),
fstype(chunk_list[i]), fstype_short(chunk_list[i]), seq_num(chunk_list[i]),
@@ -351,7 +351,7 @@ configPackages(char *str)
i = (pid == -1) ? -1 : WEXITSTATUS(pstat);
}
}
- if (i != 0)
+ if (i != 0 && isDebug())
msgDebug("pkg_manage returns status of %d\n", i);
return 0;
}