blob: 3cd9657fb56be6a3436aa9f8c76108988d4d88f4 [file] [log] [blame]
Leonardo Sandoval98d25902020-05-24 19:50:27 -07001#!/bin/sh
2
3passwd -d root
4echo "PermitRootLogin yes" >> /etc/ssh/sshd_config
5echo "PermitEmptyPasswords yes" >> /etc/ssh/sshd_config
6mkdir -p /var/run/sshd
7/usr/sbin/sshd -D &
8
9exec "$@"