diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2006-10-26 06:33:07 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-25 22:35:20 -0700 |
commit | d9c04ba3ddd0945ef18657a2a373c5edfe86ef7c (patch) | |
tree | b8a042b11ee1a30ffd9c8227da857db736329ef8 /Documentation/everyday.txt | |
parent | 119550af0c9f3cdd920e8d0e04b68b40b8485fdc (diff) | |
download | git-d9c04ba3ddd0945ef18657a2a373c5edfe86ef7c.tar.gz |
Remove --syslog in git-daemon inetd documentation examples.
It is useless because --inetd implies --syslog.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/everyday.txt')
-rw-r--r-- | Documentation/everyday.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/everyday.txt b/Documentation/everyday.txt index 99e24a445b..278161f587 100644 --- a/Documentation/everyday.txt +++ b/Documentation/everyday.txt @@ -358,7 +358,7 @@ Run git-daemon to serve /pub/scm from inetd.:: ------------ $ grep git /etc/inetd.conf git stream tcp nowait nobody \ - /usr/bin/git-daemon git-daemon --inetd --syslog --export-all /pub/scm + /usr/bin/git-daemon git-daemon --inetd --export-all /pub/scm ------------ + The actual configuration line should be on one line. @@ -378,7 +378,7 @@ service git wait = no user = nobody server = /usr/bin/git-daemon - server_args = --inetd --syslog --export-all --base-path=/pub/scm + server_args = --inetd --export-all --base-path=/pub/scm log_on_failure += USERID } ------------ |