projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
* disable ikconfig by default
[openwrt.git]
/
package
/
dropbear
/
files
/
dropbear.init
diff --git
a/package/dropbear/files/dropbear.init
b/package/dropbear/files/dropbear.init
index
ef69e90
..
f671df7
100755
(executable)
--- a/
package/dropbear/files/dropbear.init
+++ b/
package/dropbear/files/dropbear.init
@@
-1,14
+1,15
@@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
#!/bin/sh /etc/rc.common
# Copyright (C) 2006 OpenWrt.org
+START=50
# Copyright (C) 2006 Carlos Sobrinho
config_cb() {
local cfg="$CONFIG_SECTION"
local nopasswd
# Copyright (C) 2006 Carlos Sobrinho
config_cb() {
local cfg="$CONFIG_SECTION"
local nopasswd
- local
type
- config_get cfgt
ype
"$cfg" TYPE
+ local
cfgt
+ config_get cfgt "$cfg" TYPE
- case "$cfgt
ype
" in
+ case "$cfgt" in
dropbear)
config_get passauth $cfg PasswordAuth
config_get port $cfg Port
dropbear)
config_get passauth $cfg PasswordAuth
config_get port $cfg Port
@@
-16,7
+17,7
@@
config_cb() {
case "$passauth" in
no|off|disabled|0) nopasswd=1;;
esac
case "$passauth" in
no|off|disabled|0) nopasswd=1;;
esac
- DROPBEAR_ARGS="${
port:+-p $port} ${nopasswd:+-s
}"
+ DROPBEAR_ARGS="${
nopasswd:+-s }${port:+-p $port
}"
;;
esac
}
;;
esac
}
This page took
0.027352 seconds
and
4
git commands to generate.