mirror of git://anongit.mindrot.org/openssh.git
- djm@cvs.openbsd.org 2009/08/31 21:01:29
[sftp-server.8] document -e and -h; prodded by jmc@
This commit is contained in:
parent
30359e19ec
commit
7bee06ab3b
|
@ -70,6 +70,9 @@
|
||||||
- djm@cvs.openbsd.org 2009/08/31 20:56:02
|
- djm@cvs.openbsd.org 2009/08/31 20:56:02
|
||||||
[sftp-server.c]
|
[sftp-server.c]
|
||||||
check correct variable for error message, spotted by martynas@
|
check correct variable for error message, spotted by martynas@
|
||||||
|
- djm@cvs.openbsd.org 2009/08/31 21:01:29
|
||||||
|
[sftp-server.8]
|
||||||
|
document -e and -h; prodded by jmc@
|
||||||
|
|
||||||
20091002
|
20091002
|
||||||
- (djm) [Makefile.in] Mention readconf.o in ssh-keysign's make deps.
|
- (djm) [Makefile.in] Mention readconf.o in ssh-keysign's make deps.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
.\" $OpenBSD: sftp-server.8,v 1.16 2009/08/27 17:43:00 djm Exp $
|
.\" $OpenBSD: sftp-server.8,v 1.17 2009/08/31 21:01:29 djm Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 2000 Markus Friedl. All rights reserved.
|
.\" Copyright (c) 2000 Markus Friedl. All rights reserved.
|
||||||
.\"
|
.\"
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
.\"
|
.\"
|
||||||
.Dd $Mdocdate: August 27 2009 $
|
.Dd $Mdocdate: August 31 2009 $
|
||||||
.Dt SFTP-SERVER 8
|
.Dt SFTP-SERVER 8
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
@ -30,6 +30,7 @@
|
||||||
.Nd SFTP server subsystem
|
.Nd SFTP server subsystem
|
||||||
.Sh SYNOPSIS
|
.Sh SYNOPSIS
|
||||||
.Nm sftp-server
|
.Nm sftp-server
|
||||||
|
.Op Fl eh
|
||||||
.Op Fl f Ar log_facility
|
.Op Fl f Ar log_facility
|
||||||
.Op Fl l Ar log_level
|
.Op Fl l Ar log_level
|
||||||
.Op Fl u Ar umask
|
.Op Fl u Ar umask
|
||||||
|
@ -55,12 +56,20 @@ for more information.
|
||||||
.Pp
|
.Pp
|
||||||
Valid options are:
|
Valid options are:
|
||||||
.Bl -tag -width Ds
|
.Bl -tag -width Ds
|
||||||
|
.It Fl e
|
||||||
|
Causes
|
||||||
|
.Nm
|
||||||
|
to print logging information to stderr instead of syslog for debugging.
|
||||||
.It Fl f Ar log_facility
|
.It Fl f Ar log_facility
|
||||||
Specifies the facility code that is used when logging messages from
|
Specifies the facility code that is used when logging messages from
|
||||||
.Nm .
|
.Nm .
|
||||||
The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
|
The possible values are: DAEMON, USER, AUTH, LOCAL0, LOCAL1, LOCAL2,
|
||||||
LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
|
LOCAL3, LOCAL4, LOCAL5, LOCAL6, LOCAL7.
|
||||||
The default is AUTH.
|
The default is AUTH.
|
||||||
|
.It Fl h
|
||||||
|
Displays
|
||||||
|
.Nm
|
||||||
|
usage information.
|
||||||
.It Fl l Ar log_level
|
.It Fl l Ar log_level
|
||||||
Specifies which messages will be logged by
|
Specifies which messages will be logged by
|
||||||
.Nm .
|
.Nm .
|
||||||
|
|
Loading…
Reference in New Issue