~ubuntu-branches/ubuntu/trusty/autossh/trusty

« back to all changes in this revision

Viewing changes to debian/autossh-argv0

  • Committer: Bazaar Package Importer
  • Author(s): Filippo Giunchedi
  • Date: 2009-05-23 19:08:46 UTC
  • mfrom: (4.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090523190846-t9o0b24pmyrl9idk
Tags: 1.4b-2
* Include autossh-argv0 shamelessly copied/adapted from ssh-argv0
* Add debian/patches/040_manpage_debian.diff to reference README.Debian for
  autossh debian-specific behavior (Closes: #523861)
* Install logcheck ignore rules into
  /etc/logcheck/ignore.d.workstation/autossh (Closes: #505659)
* Add ${misc:Depends} as lintian requested
* Update to S-V 3.8.1, no changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
 
 
3
# Adapted from ssh-argv0 for usage with autossh
 
4
# Note: the ssh-argv0(1) manpage is left as-is because autossh is meant as a
 
5
# commandline replacement for ssh
 
6
 
 
7
# Copyright (c) 2001 Jonathan Amery.
 
8
#
 
9
# Redistribution and use in source and binary forms, with or without
 
10
# modification, are permitted provided that the following conditions
 
11
# are met:
 
12
# 1. Redistributions of source code must retain the above copyright
 
13
#    notice, this list of conditions and the following disclaimer.
 
14
# 2. Redistributions in binary form must reproduce the above copyright
 
15
#    notice, this list of conditions and the following disclaimer in the
 
16
#    documentation and/or other materials provided with the distribution.
 
17
#
 
18
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 
19
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
20
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 
21
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 
22
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 
23
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 
24
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 
25
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 
27
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 
 
29
if [ "${0##*/}" = "autossh-argv0" ]
 
30
then
 
31
  echo 'autossh-argv0: This script should not be run like this, see ssh-argv0(1) and autossh(1) for details' 1>&2
 
32
  exit 1
 
33
fi
 
34
exec autossh "${0##*/}" "$@"