You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
629 B
32 lines
629 B
8 years ago
|
#!/bin/sh
|
||
|
|
||
|
test -e /var/etc/.dropbear || exit
|
||
|
|
||
|
ETCDIR=/etc/dropbear
|
||
|
|
||
|
genkeys() {
|
||
|
for keytype in dss rsa; do
|
||
|
keyfile=$ETCDIR/dropbear_${keytype}_host_key
|
||
|
test -e $keyfile && continue
|
||
|
/bin/dropbearkey -t $keytype -f $keyfile
|
||
|
done
|
||
|
}
|
||
|
|
||
|
fixperms() {
|
||
|
# /root must be owned by root and must not world writable.
|
||
|
# fresh from the buildsystem it belongs to the building user...
|
||
|
test -L /root -o ! -d /root && return # not a directory
|
||
|
chown 0:0 /root
|
||
|
chmod go-w /root
|
||
|
}
|
||
|
|
||
|
case $1 in
|
||
|
start) genkeys
|
||
|
fixperms
|
||
|
/sbin/dropbear
|
||
|
;;
|
||
|
stop) pid=$(cat /var/run/dropbear.pid 2>/dev/null)
|
||
|
test -n "$pid" && kill $pid || true
|
||
|
;;
|
||
|
esac
|