summaryrefslogtreecommitdiffstats
path: root/usr.sbin
diff options
context:
space:
mode:
authorschweikh <schweikh@FreeBSD.org>2010-08-14 21:48:22 +0000
committerschweikh <schweikh@FreeBSD.org>2010-08-14 21:48:22 +0000
commitbe19f441bbcdd0d460d3be3c4c1e1db47a40da45 (patch)
treec912a08590be0fd5ffc4445844e7be82d982cc74 /usr.sbin
parentae1f5ecd8ef9d870c90b9d061d3ce225aa0becd0 (diff)
downloadFreeBSD-src-be19f441bbcdd0d460d3be3c4c1e1db47a40da45.zip
FreeBSD-src-be19f441bbcdd0d460d3be3c4c1e1db47a40da45.tar.gz
Correctly spell janice and jimmy as janis and jimi (assuming
the famous rock stars meant were Miss Joplin and Mr Hendrix.)
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sysinstall/config.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c
index ff4c1f9..6e176d7 100644
--- a/usr.sbin/sysinstall/config.c
+++ b/usr.sbin/sysinstall/config.c
@@ -224,38 +224,38 @@ configFstab(dialogMenuItem *self)
}
chunk_list[nchunks] = 0;
chunk_sort();
-
+
fstab = fopen("/etc/fstab", "w");
if (!fstab) {
msgConfirm("Unable to create a new /etc/fstab file! Manual intervention\n"
"will be required.");
return DITEM_FAILURE;
}
-
+
check_rootdev(chunk_list, nchunks);
-
+
/* Go for the burn */
msgDebug("Generating /etc/fstab file\n");
fprintf(fstab, "# Device\t\tMountpoint\tFStype\tOptions\t\tDump\tPass#\n");
for (i = 0; i < nchunks; i++)
fprintf(fstab, "/dev/%s\t\t%s\t\t%s\t%s\t\t%d\t%d\n", name_of(chunk_list[i]), mount_point(chunk_list[i]),
fstype(chunk_list[i]), fstype_short(chunk_list[i]), seq_num(chunk_list[i]), seq_num(chunk_list[i]));
-
+
/* Now look for the CDROMs */
devs = deviceFind(NULL, DEVICE_TYPE_CDROM);
cnt = deviceCount(devs);
-
+
/* Write out the CDROM entries */
for (i = 0; i < cnt; i++) {
char cdname[10];
-
+
sprintf(cdname, "/cdrom%s", i ? itoa(i) : "");
if (Mkdir(cdname))
msgConfirm("Unable to make mount point for: %s", cdname);
else
fprintf(fstab, "/dev/%s\t\t%s\t\tcd9660\tro,noauto\t0\t0\n", devs[i]->name, cdname);
}
-
+
fclose(fstab);
if (isDebug())
msgDebug("Wrote out /etc/fstab file\n");
@@ -530,7 +530,7 @@ configUsers(dialogMenuItem *self)
WINDOW *w = savescr();
dialog_clear_norefresh();
- dmenuOpenSimple(&MenuUsermgmt, FALSE);
+ dmenuOpenSimple(&MenuUsermgmt, FALSE);
restorescr(w);
return DITEM_SUCCESS;
}
@@ -657,10 +657,10 @@ configRouter(dialogMenuItem *self)
"the user intends to install themselves before rebooting\n"
"the system. If you don't want any routing daemon, choose NO", 1)
? DITEM_SUCCESS : DITEM_FAILURE;
-
+
if (ret == DITEM_SUCCESS) {
char *cp = variable_get(VAR_ROUTER);
-
+
if (cp && strcmp(cp, "NO")) {
variable_set2(VAR_ROUTER_ENABLE, "YES", 1);
if (!strcmp(cp, "gated")) {
@@ -674,7 +674,7 @@ configRouter(dialogMenuItem *self)
}
if (cp) {
/* Now get the flags, if they chose a router */
- ret = variable_get_value(VAR_ROUTERFLAGS,
+ ret = variable_get_value(VAR_ROUTERFLAGS,
"Please Specify the routing daemon flags; if you're running routed\n"
"then -q is the right choice for nodes and -s for gateway hosts.\n", 1)
? DITEM_SUCCESS : DITEM_FAILURE;
@@ -747,7 +747,7 @@ configPackages(dialogMenuItem *self)
tmp = Plist.kids;
while (tmp) {
PkgNodePtr tmp2 = tmp->next;
-
+
safe_free(tmp);
tmp = tmp2;
}
@@ -826,7 +826,7 @@ configNFSServer(dialogMenuItem *self)
vsystem("echo '#and, /a to a network of privileged machines allowed to write on it as root.' >> /etc/exports");
vsystem("echo '#/usr huey louie dewie' >> /etc/exports");
vsystem("echo '#/usr/src /usr/obj -ro calvin hobbes' >> /etc/exports");
- vsystem("echo '#/home -alldirs janice jimmy frank' >> /etc/exports");
+ vsystem("echo '#/home -alldirs janis jimi frank' >> /etc/exports");
vsystem("echo '#/a -maproot=0 -network 10.0.1.0 -mask 255.255.248.0' >> /etc/exports");
vsystem("echo '#' >> /etc/exports");
vsystem("echo '# You should replace these lines with your actual exported filesystems.' >> /etc/exports");
@@ -936,7 +936,7 @@ configLoaderACPI(int disable)
fclose(ldconf);
return DITEM_SUCCESS;
-}
+}
#endif
int
OpenPOWER on IntegriCloud