Format scripts with shfmt

This commit is contained in:
Marko Korhonen 2024-05-09 11:02:40 +03:00
parent 7aa6142adb
commit 3599220815
Signed by: FunctionalHacker
GPG key ID: A7F78BCB859CD890
2 changed files with 66 additions and 70 deletions

View file

@ -1,16 +1,14 @@
#!/bin/sh
run_hook ()
{
[ -d /dev/pts ] || mkdir -p /dev/pts
mount -t devpts devpts /dev/pts
run_hook() {
[ -d /dev/pts ] || mkdir -p /dev/pts
mount -t devpts devpts /dev/pts
echo "Starting dropbear"
/usr/sbin/dropbear -E -s -j -k
echo "Starting dropbear"
/usr/sbin/dropbear -E -s -j -k
}
run_cleanuphook ()
{
run_cleanuphook() {
umount /dev/pts
rm -R /dev/pts
if [ -f /var/run/dropbear.pid ]; then