]> git.e2factory.org Git - e2factory.git/commitdiff
Remove global e2ssh tool
authorTobias Ulmer <tu@emlix.com>
Mon, 26 Nov 2012 15:17:43 +0000 (16:17 +0100)
committerTobias Ulmer <tu@emlix.com>
Tue, 26 Feb 2013 18:07:11 +0000 (19:07 +0100)
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 <tu@emlix.com>
doc/man/Makefile
doc/man/e2intro.7
doc/man/e2ssh.1 [deleted file]
global/Makefile
global/e2ssh.sh [deleted file]

index 837c163d8597f8d525e8af45d58c184912219977..2f469b18621d403b74ae509b714e74fe3de6c5c9 100644 (file)
@@ -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
 
index 88239b58ea3f51fa65d746db6ae6aac9b4f0ead7..210256c07fbf7247d79cd1b4d9f3d6e81cde35b8 100644 (file)
@@ -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 (file)
index 2e19c4a..0000000
+++ /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
index 7ce1086fc64d9caa19c363b7951ce6efcff8c2cc..25f6ba36229c05d0312934ecbd4c284f3743e190 100644 (file)
@@ -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 (file)
index 5434be3..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/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} "$@"