blob: 3cd9657fb56be6a3436aa9f8c76108988d4d88f4 [file] [log] [blame]
#!/bin/sh
passwd -d root
echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
echo "PermitEmptyPasswords yes" >> /etc/ssh/sshd_config
mkdir -p /var/run/sshd
/usr/sbin/sshd -D &
exec "$@"