.TP
.BR E2_SSH
specify a tool to use instead of \fBssh\fR(1).
-.TP
-.BR E2_SSH_OPTIONS
-set ssh options when using the \fBe2ssh\fR(1) \fBssh\fR wrapper.
.SH "SEE ALSO"
.BR e2workflow(7)
.BR e2config(5)
.BR e2global(1)
.BR e2-install-e2(1)
-.BR e2ssh(1)
.SH AUTHORS
Gordon Hecker, Oskar Schirmer and Felix Winkelmann
+++ /dev/null
-.\" Man page for e2ssh
-.\"
-.\" (c)2007 emlix GmbH
-.\"
-.TH e2 1 "Aug 12, 2008" "2.2"
-
-.SH NAME
-e2ssh \- wrapper script for ssh to support custom ssh options
-
-.SH SYNOPSIS
-e2ssh SSH_OPTIONS
-
-.SH DESCRIPTION
-\fBe2ssh\fR is a wrapper script that calls ssh passing the arguments
-given in the E2_SSH_OPTIONS environment variable and its own command line
-options to ssh.
-It is intended to be used by setting the E2_SSH environment variable
-to \fBe2ssh\fR when calling e2 tools.
-
-.SH RETURN VALUE
-the return value of ssh
-
-.SH ENVIRONMENT
-.TP
-.BR E2_SSH_OPTIONS
-options given in this variable are passed to \fBssh\fR.
-
-.SH BUGS
-No known bugs.
-
-.SH "SEE ALSO"
-.BR e2intro(7)
-
-.SH AUTHORS
-Gordon Hecker, Oskar Schirmer and Felix Winkelmann
-
-.SH COPYRIGHT
-(c)2008 emlix GmbH
SCRIPTS =
GLOBALLUATOOLS = e2-create-project e2-fetch-project e2-install-e2
-GLOBALSHTOOLS = e2-locate-project-root e2ssh e2-su
+GLOBALSHTOOLS = e2-locate-project-root e2-su
GLOBALTOOLS = $(GLOBALLUATOOLS) $(GLOBALSHTOOLS)
CLEAN_FILES = e2 e2.conf
LUA_LIBS = strict.lua plugin.lua e2lib.lua
+++ /dev/null
-#!/bin/bash
-#
-# e2factory, the emlix embedded build system
-#
-# Copyright (C) 2007-2009 Gordon Hecker <gh@emlix.com>, emlix GmbH
-# Copyright (C) 2007-2009 Oskar Schirmer <os@emlix.com>, emlix GmbH
-# Copyright (C) 2007-2008 Felix Winkelmann, emlix GmbH
-#
-# For more information have a look at http://www.e2factory.org
-#
-# e2factory is a registered trademark by emlix GmbH.
-#
-# This file is part of e2factory, the emlix embedded build system.
-#
-# e2factory is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-#
-
-exec ssh ${E2_SSH_OPTIONS} "$@"