aboutsummaryrefslogtreecommitdiff
path: root/templates/tunnel-autossh.erb
diff options
context:
space:
mode:
Diffstat (limited to 'templates/tunnel-autossh.erb')
-rw-r--r--templates/tunnel-autossh.erb30
1 files changed, 0 insertions, 30 deletions
diff --git a/templates/tunnel-autossh.erb b/templates/tunnel-autossh.erb
deleted file mode 100644
index 0e38c3a..0000000
--- a/templates/tunnel-autossh.erb
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-# port forwarding with ssh
-# installed with: update-rc.d tunnel-autossh start 18 2 3 4 5 . stop 81 0 1 6 .
-
-PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
-
-if ! [ -x /usr/bin/autossh ]; then
- echo "Where is autossh?"
- exit 0
-fi
-
-case "$1" in
- start)
- # same as above for the collector
- # here we are binding to a host with an common internal interface (127.0.0.1)
- /bin/su <%= autossh_tunneluser %> -c '/usr/bin/autossh -f -N -L <%= autossh_localport %>:<%= autossh_localip %>:<%= autossh_localportservice %> <%= autossh_remotehost %> -M <%= autossh_moniport %>'
- echo "adding tunnel for ldap replication"
- ;;
- stop)
- echo -n "destroying tunnel ..."
- killall autossh
- echo "destroyed!"
- ;;
-
- *)
- echo "Usage: /etc/init.d/tunnel-autossh {start|stop}"
- exit 1
- ;;
-esac
-