diff options
| author | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-02-03 22:28:16 +0000 | 
|---|---|---|
| committer | florian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-02-03 22:28:16 +0000 | 
| commit | edd83954812b0a6d12fd76aa1c800f946e00b3ac (patch) | |
| tree | db8798f404d37b2bb0e018d344840764b4a0271f /package/dropbear/files/dropbear.init | |
| parent | 4905fc917376958c36c283e3e49ebc688fe11245 (diff) | |
[package] add dropkey ssh keys and config files to the conffiles section (#2014)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14399 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/dropbear/files/dropbear.init')
| -rwxr-xr-x | package/dropbear/files/dropbear.init | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/package/dropbear/files/dropbear.init b/package/dropbear/files/dropbear.init index f671df787..aaa447043 100755 --- a/package/dropbear/files/dropbear.init +++ b/package/dropbear/files/dropbear.init @@ -26,7 +26,7 @@ keygen() {  	for keytype in rsa dss; do  		# check for keys  		key=dropbear/dropbear_${keytype}_host_key -		[ -f /tmp/$key -o -f /etc/$key ] || { +		[ -f /tmp/$key -o -s /etc/$key ] || {  			# generate missing keys  			mkdir -p /tmp/dropbear  			[ -x /usr/bin/dropbearkey ] && { @@ -45,8 +45,8 @@ keygen() {  }  start() { -	[ -f /etc/dropbear/dropbear_rsa_host_key -a \ -	  -f /etc/dropbear/dropbear_dss_host_key ] || keygen +	[ -s /etc/dropbear/dropbear_rsa_host_key -a \ +	  -s /etc/dropbear/dropbear_dss_host_key ] || keygen  	config_load dropbear  	/usr/sbin/dropbear $DROPBEAR_ARGS  | 
