2005-03-07 07:33:02 +00:00
|
|
|
#!/bin/sh
|
2013-05-16 23:31:39 +00:00
|
|
|
# $OpenBSD: sshd-log-wrapper.sh,v 1.3 2013/04/07 02:16:03 dtucker Exp $
|
2005-03-07 07:33:02 +00:00
|
|
|
# Placed in the Public Domain.
|
|
|
|
#
|
|
|
|
# simple wrapper for sshd proxy mode to catch stderr output
|
2015-02-26 00:58:22 +00:00
|
|
|
# sh sshd-log-wrapper.sh /path/to/logfile /path/to/sshd [args...]
|
2005-03-07 07:33:02 +00:00
|
|
|
|
2015-02-26 00:58:22 +00:00
|
|
|
log=$1
|
2005-03-07 07:33:02 +00:00
|
|
|
shift
|
|
|
|
|
2015-02-26 00:58:22 +00:00
|
|
|
exec "$@" -E$log
|