diff options
author | maxim <maxim@FreeBSD.org> | 2008-12-18 06:38:11 +0000 |
---|---|---|
committer | maxim <maxim@FreeBSD.org> | 2008-12-18 06:38:11 +0000 |
commit | 0d7ad1afe049e81a7b5f9ed91c58f464ff689e93 (patch) | |
tree | 19654acc2541bbf44e72db9064e006694c8d5dd7 /usr.sbin/sysinstall | |
parent | 0e212eb0e18c03ccc92cf87b6fbb4379ff303d32 (diff) | |
download | FreeBSD-src-0d7ad1afe049e81a7b5f9ed91c58f464ff689e93.zip FreeBSD-src-0d7ad1afe049e81a7b5f9ed91c58f464ff689e93.tar.gz |
o Synchronize comment and example. Add missed comma.
PR: misc/129699
Submitted by: Glen Barber [1]
MFC after: 2 weeks
Diffstat (limited to 'usr.sbin/sysinstall')
-rw-r--r-- | usr.sbin/sysinstall/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/config.c b/usr.sbin/sysinstall/config.c index 89bf247..7693833 100644 --- a/usr.sbin/sysinstall/config.c +++ b/usr.sbin/sysinstall/config.c @@ -817,7 +817,7 @@ configNFSServer(dialogMenuItem *self) "kinds of access to your local file systems.\n" "Press [ENTER] now to invoke an editor on /etc/exports\n"); vsystem("echo '#The following examples export /usr to 3 machines named after ducks,' > /etc/exports"); - vsystem("echo '#/usr/src and /usr/ports read-only to machines named after trouble makers' >> /etc/exports"); + vsystem("echo '#/usr/src and /usr/obj read-only to machines named after trouble makers,' >> /etc/exports"); vsystem("echo '#/home and all directories under it to machines named after dead rock stars' >> /etc/exports"); 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"); |