summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2010-10-03 21:34:09 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2010-10-03 21:34:09 +0000
commit34588024e518ced35f98d704365244fde12cc2d1 (patch)
tree9c0c1a4b39760af116d82bea2773c81557db3af5
parentad9296cca4041096eb02a619949eb0dfccd390e8 (diff)
Overriding the base_dir is not a great idea
If we override base_dir we also need to change the -status script. Let's not do that unless it is actually useful. git-svn-id: svn+ssh://xorcom/home/svn/debs/components/rapid-tunneling@8402 283159da-0705-0410-b60c-f2062b4bb6ad
-rwxr-xr-xrapid-tunneling2
1 files changed, 0 insertions, 2 deletions
diff --git a/rapid-tunneling b/rapid-tunneling
index 49c5656..b86510e 100755
--- a/rapid-tunneling
+++ b/rapid-tunneling
@@ -11,7 +11,6 @@ usage() {
echo >&2 " $me [options] remote-access-NAME.tar.gz"
echo >&2 ""
echo >&2 "Options:"
- echo >&2 " -b DIR Override Base Directory (Default: $base_dir)"
echo >&2 " -h HOST Connect to HOST rather the host from the tarball"
echo >&2 " -p PORT Connect to PORT rather the host from the tarball"
echo >&2 " -u USER Connect to USER rather the host from the tarball"
@@ -32,7 +31,6 @@ opt_user=''
while getopts b:h:p:u: opt; do
case "$opt" in
- b) base_dir="$OPTARG";;
h) opt_host="$OPTARG";;
p) opt_port="$OPTARG";;
u) opt_user="$OPTARG";;