blob: bfef63cd912830d2955abab901f15af1d11f8428 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
echo 'root:password' | chpasswd
echo 'PermitRootLogin yes' >> /etc/ssh/sshd_config
openrc
touch /run/openrc/softlevel
/etc/init.d/sshd start
nginx -t || exit 1
nginx
sleep infinity &
wait
|