mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-03 16:37:43 +00:00
* Removed dropbear init patch
* Added dropbear init script * Added more verbose messages about key generation
This commit is contained in:
parent
6d5ecc1e51
commit
65ee2746a4
56
package/dropbear/S50dropbear
Normal file
56
package/dropbear/S50dropbear
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Starts dropbear sshd.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Make sure the dropbearkey progam exists
|
||||||
|
[ -f /usr/bin/dropbearkey ] || exit 0
|
||||||
|
|
||||||
|
start() {
|
||||||
|
echo -n "Starting dropbear sshd: "
|
||||||
|
# Make sure dropbear directory exists
|
||||||
|
if [ ! -d /etc/dropbear ] ; then
|
||||||
|
mkdir -p /etc/dropbear
|
||||||
|
fi
|
||||||
|
# Check for the Dropbear RSA key
|
||||||
|
if [ ! -f /etc/dropbear/dropbear_rsa_host_key ] ; then
|
||||||
|
echo -n "generating rsa key... "
|
||||||
|
/usr/bin/dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key > /dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check for the Dropbear DSS key
|
||||||
|
if [ ! -f /etc/dropbear/dropbear_dss_host_key ] ; then
|
||||||
|
echo -n "generating dsa key... "
|
||||||
|
/usr/bin/dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key > /dev/null 2>&1
|
||||||
|
fi
|
||||||
|
umask 077
|
||||||
|
start-stop-daemon -S -q -p /var/run/dropbear.pid --exec /usr/sbin/dropbear
|
||||||
|
echo "OK"
|
||||||
|
}
|
||||||
|
stop() {
|
||||||
|
echo -n "Stopping dropbear sshd: "
|
||||||
|
start-stop-daemon -K -q -p /var/run/dropbear.pid
|
||||||
|
echo "OK"
|
||||||
|
}
|
||||||
|
restart() {
|
||||||
|
stop
|
||||||
|
start
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
start)
|
||||||
|
start
|
||||||
|
;;
|
||||||
|
stop)
|
||||||
|
stop
|
||||||
|
;;
|
||||||
|
restart|reload)
|
||||||
|
restart
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo $"Usage: $0 {start|stop|restart}"
|
||||||
|
exit 1
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit $?
|
||||||
|
|
@ -1,60 +0,0 @@
|
|||||||
diff -rNu dropbear-0.51_vanilla/S50dropbear dropbear-0.51_init/S50dropbear
|
|
||||||
--- dropbear-0.51_vanilla/S50dropbear 1970-01-01 00:00:00.000000000 +0000
|
|
||||||
+++ dropbear-0.51_init/S50dropbear 2008-04-08 14:46:53.000000000 +0000
|
|
||||||
@@ -0,0 +1,56 @@
|
|
||||||
+#!/bin/sh
|
|
||||||
+#
|
|
||||||
+# Starts dropbear sshd.
|
|
||||||
+#
|
|
||||||
+
|
|
||||||
+# Make sure the dropbearkey progam exists
|
|
||||||
+[ -f /usr/bin/dropbearkey ] || exit 0
|
|
||||||
+
|
|
||||||
+start() {
|
|
||||||
+ echo -n "Starting dropbear sshd: "
|
|
||||||
+ # Make sure dropbear directory exists
|
|
||||||
+ if [ ! -d /etc/dropbear ] ; then
|
|
||||||
+ mkdir -p /etc/dropbear
|
|
||||||
+ fi
|
|
||||||
+ # Check for the Dropbear RSA key
|
|
||||||
+ if [ ! -f /etc/dropbear/dropbear_rsa_host_key ] ; then
|
|
||||||
+ /usr/bin/dropbearkey -t rsa -f /etc/dropbear/dropbear_rsa_host_key > /dev/null 2>&1
|
|
||||||
+ echo -n .
|
|
||||||
+ fi
|
|
||||||
+
|
|
||||||
+ # Check for the Dropbear DSS key
|
|
||||||
+ if [ ! -f /etc/dropbear/dropbear_dss_host_key ] ; then
|
|
||||||
+ /usr/bin/dropbearkey -t dss -f /etc/dropbear/dropbear_dss_host_key > /dev/null 2>&1
|
|
||||||
+ echo -n .
|
|
||||||
+ fi
|
|
||||||
+ umask 077
|
|
||||||
+ start-stop-daemon -S -q -p /var/run/dropbear.pid --exec /usr/sbin/dropbear
|
|
||||||
+ echo "OK"
|
|
||||||
+}
|
|
||||||
+stop() {
|
|
||||||
+ echo -n "Stopping sshd: "
|
|
||||||
+ start-stop-daemon -K -q -p /var/run/dropbear.pid
|
|
||||||
+ echo "OK"
|
|
||||||
+}
|
|
||||||
+restart() {
|
|
||||||
+ stop
|
|
||||||
+ start
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+case "$1" in
|
|
||||||
+ start)
|
|
||||||
+ start
|
|
||||||
+ ;;
|
|
||||||
+ stop)
|
|
||||||
+ stop
|
|
||||||
+ ;;
|
|
||||||
+ restart|reload)
|
|
||||||
+ restart
|
|
||||||
+ ;;
|
|
||||||
+ *)
|
|
||||||
+ echo $"Usage: $0 {start|stop|restart}"
|
|
||||||
+ exit 1
|
|
||||||
+esac
|
|
||||||
+
|
|
||||||
+exit $?
|
|
||||||
+
|
|
@ -57,8 +57,7 @@ $(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY): $(DROPBEAR_DIR)/$(DROPBEAR_BINARY)
|
|||||||
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/dropbearkey
|
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/dropbearkey
|
||||||
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/dropbearconvert
|
ln -snf ../sbin/dropbear $(TARGET_DIR)/usr/bin/dropbearconvert
|
||||||
mkdir -p $(TARGET_DIR)/etc/init.d
|
mkdir -p $(TARGET_DIR)/etc/init.d
|
||||||
cp -dpf $(DROPBEAR_DIR)/S50dropbear $(TARGET_DIR)/etc/init.d/
|
$(INSTALL) -m 755 package/dropbear/S50dropbear $(TARGET_DIR)/etc/init.d/S50dropbear
|
||||||
chmod a+x $(TARGET_DIR)/etc/init.d/S50dropbear
|
|
||||||
|
|
||||||
dropbear: uclibc zlib $(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY)
|
dropbear: uclibc zlib $(TARGET_DIR)/$(DROPBEAR_TARGET_BINARY)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user