diff options
author | 2009-11-10 02:56:22 +0000 | |
---|---|---|
committer | 2009-11-10 02:56:22 +0000 | |
commit | ddc586070bd41a86299577aa491059c9f3060b8a (patch) | |
tree | 22d43aa55ccfebe0bf865594916600b44325c800 | |
parent | - add comments to explain the logic in the aliases expansion loop (diff) | |
download | wireguard-openbsd-ddc586070bd41a86299577aa491059c9f3060b8a.tar.xz wireguard-openbsd-ddc586070bd41a86299577aa491059c9f3060b8a.zip |
explain the constraints on LocalCommand some more so people don't
try to abuse it.
-rw-r--r-- | usr.bin/ssh/ssh_config.5 | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh_config.5 b/usr.bin/ssh/ssh_config.5 index fde899477a6..001130936cd 100644 --- a/usr.bin/ssh/ssh_config.5 +++ b/usr.bin/ssh/ssh_config.5 @@ -34,8 +34,8 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: ssh_config.5,v 1.122 2009/10/28 16:38:18 reyk Exp $ -.Dd $Mdocdate: October 28 2009 $ +.\" $OpenBSD: ssh_config.5,v 1.123 2009/11/10 02:56:22 djm Exp $ +.Dd $Mdocdate: November 10 2009 $ .Dt SSH_CONFIG 5 .Os .Sh NAME @@ -616,6 +616,13 @@ The following escape character substitutions will be performed: (remote user name) or .Ql %u (local user name). +.Pp +The command is run synchronously and does not have access to the +session of the +.Xr ssh 1 +that spawned it. +It should not be used for interactive commands. +.Pp This directive is ignored unless .Cm PermitLocalCommand has been enabled. |