summaryrefslogtreecommitdiff
path: root/dropbear
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2004-09-18 15:27:05 +0000
committerPhil Blundell <philb@gnu.org>2004-09-18 15:27:05 +0000
commit4192196731b34198722fc8ac14393a2510a50408 (patch)
tree0cfca71877403743f810da120241eb281da3070d /dropbear
parentc7b4436fdd9f92acee32f5e9abee8fad92347352 (diff)
remove some excessive quote marks causing startup problems
BKrev: 414c53c9r6c7108NlEVnmahXeWTqIQ
Diffstat (limited to 'dropbear')
-rw-r--r--dropbear/dropbear/init8
-rw-r--r--dropbear/dropbear_0.43+0.44test4.oe2
2 files changed, 5 insertions, 5 deletions
diff --git a/dropbear/dropbear/init b/dropbear/dropbear/init
index 21e2ffa671..d019bdb4ba 100644
--- a/dropbear/dropbear/init
+++ b/dropbear/dropbear/init
@@ -64,8 +64,8 @@ case "$1" in
echo -n "Starting $DESC: "
gen_keys
KEY_ARGS=""
- test -f $DROPBEAR_DSSKEY && KEY_ARGS="$KEY_ARGS -d \"$DROPBEAR_DSSKEY\""
- test -f $DROPBEAR_RSAKEY && KEY_ARGS="$KEY_ARGS -r \"$DROPBEAR_RSAKEY\""
+ test -f $DROPBEAR_DSSKEY && KEY_ARGS="$KEY_ARGS -d $DROPBEAR_DSSKEY"
+ test -f $DROPBEAR_RSAKEY && KEY_ARGS="$KEY_ARGS -r $DROPBEAR_RSAKEY"
start-stop-daemon -S \
-x "$DAEMON" -- $KEY_ARGS \
-p "$DROPBEAR_PORT" $DROPBEAR_EXTRA_ARGS
@@ -81,8 +81,8 @@ case "$1" in
start-stop-daemon -K -x "$DAEMON"
sleep 1
KEY_ARGS=""
- test -f $DROPBEAR_DSSKEY && KEY_ARGS="$KEY_ARGS -d \"$DROPBEAR_DSSKEY\""
- test -f $DROPBEAR_RSAKEY && KEY_ARGS="$KEY_ARGS -r \"$DROPBEAR_RSAKEY\""
+ test -f $DROPBEAR_DSSKEY && KEY_ARGS="$KEY_ARGS -d $DROPBEAR_DSSKEY"
+ test -f $DROPBEAR_RSAKEY && KEY_ARGS="$KEY_ARGS -r $DROPBEAR_RSAKEY"
start-stop-daemon -S \
-x "$DAEMON" -- $KEY_ARGS \
-p "$DROPBEAR_PORT" $DROPBEAR_EXTRA_ARGS
diff --git a/dropbear/dropbear_0.43+0.44test4.oe b/dropbear/dropbear_0.43+0.44test4.oe
index b494ce74da..9bb5564f27 100644
--- a/dropbear/dropbear_0.43+0.44test4.oe
+++ b/dropbear/dropbear_0.43+0.44test4.oe
@@ -1,7 +1,7 @@
DESCRIPTION = "Dropbear SSH Implementation"
LICENSE = "MIT"
DEPENDS = "zlib"
-PR = "r2"
+PR = "r3"
RV = "0.44test4"
SRC_URI = "http://matt.ucc.asn.au/dropbear/testing/dropbear-${RV}.tar.bz2 \