⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dropbear.init

📁 Linux Home Server 是专门为家庭和SOHO/SMB 设计的高性价比的ISCSI 存储服务器, 具有如下的特色: 强大的iscsi 存储服务器软件; 混合iscsi 和NAS 服务;
💻 INIT
字号:
#!/bin/sh /etc/rc.common# Copyright (C) 2006 OpenWrt.orgSTART=50# Copyright (C) 2006 Carlos Sobrinhoconfig_cb() {	local cfg="$CONFIG_SECTION"	local nopasswd	local cfgt	config_get cfgt "$cfg" TYPE	case "$cfgt" in		dropbear)			config_get passauth $cfg PasswordAuth			config_get port $cfg Port			case "$passauth" in				no|off|disabled|0) nopasswd=1;;			esac			DROPBEAR_ARGS="${nopasswd:+-s }${port:+-p $port}"		;;	esac}keygen() {	for keytype in rsa dss; do		# check for keys		key=dropbear/dropbear_${keytype}_host_key		[ -f /tmp/$key -o -f /etc/$key ] || {			# generate missing keys			mkdir -p /tmp/dropbear			[ -x /usr/bin/dropbearkey ] && {				/usr/bin/dropbearkey -t $keytype -f /tmp/$key 2>&- >&- && exec /etc/rc.common "$initscript" start			} &		exit 0		}	done	lock /tmp/.switch2jffs	mkdir -p /etc/dropbear	mv /tmp/dropbear/dropbear_* /etc/dropbear/	lock -u /tmp/.switch2jffs	chown root /etc/dropbear	chmod 0700 /etc/dropbear}start() {	[ -f /etc/dropbear/dropbear_rsa_host_key -a \	  -f /etc/dropbear/dropbear_dss_host_key ] || keygen		config_load dropbear	/usr/sbin/dropbear $DROPBEAR_ARGS}stop() {	killall dropbear}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -