From: Tobias Ulmer Date: Mon, 26 Nov 2012 15:17:43 +0000 (+0100) Subject: Remove global e2ssh tool X-Git-Tag: e2factory-2.3.13rc1~87 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=724d7b30ca6a153becfa6a232a84fb3d981a9472;p=e2factory.git Remove global e2ssh tool Unused since dinosaurs roamed the earth. There are plenty of other ways to add arguments to the default ssh tool. Signed-off-by: Tobias Ulmer --- diff --git a/doc/man/Makefile b/doc/man/Makefile index 837c163..2f469b1 100644 --- a/doc/man/Makefile +++ b/doc/man/Makefile @@ -42,7 +42,6 @@ e2-install-e2.1 \ e2-ls-project.1 \ e2-new-source.1 \ e2-playground.1 \ -e2ssh.1 \ e2.conf.5 \ e2-build-numbers.1 diff --git a/doc/man/e2intro.7 b/doc/man/e2intro.7 index 88239b5..210256c 100644 --- a/doc/man/e2intro.7 +++ b/doc/man/e2intro.7 @@ -123,9 +123,6 @@ use a custom e2 config file .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) @@ -141,7 +138,6 @@ set ssh options when using the \fBe2ssh\fR(1) \fBssh\fR wrapper. .BR e2config(5) .BR e2global(1) .BR e2-install-e2(1) -.BR e2ssh(1) .SH AUTHORS Gordon Hecker, Oskar Schirmer and Felix Winkelmann diff --git a/doc/man/e2ssh.1 b/doc/man/e2ssh.1 deleted file mode 100644 index 2e19c4a..0000000 --- a/doc/man/e2ssh.1 +++ /dev/null @@ -1,38 +0,0 @@ -.\" 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 diff --git a/global/Makefile b/global/Makefile index 7ce1086..25f6ba3 100644 --- a/global/Makefile +++ b/global/Makefile @@ -33,7 +33,7 @@ VPATH = .:$(TOPLEVEL)/generic:$(TOPLEVEL) 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 diff --git a/global/e2ssh.sh b/global/e2ssh.sh deleted file mode 100644 index 5434be3..0000000 --- a/global/e2ssh.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -# -# e2factory, the emlix embedded build system -# -# Copyright (C) 2007-2009 Gordon Hecker , emlix GmbH -# Copyright (C) 2007-2009 Oskar Schirmer , 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 . -# - -exec ssh ${E2_SSH_OPTIONS} "$@"