9 lines
149 B
Plaintext
9 lines
149 B
Plaintext
|
#!/bin/sh
|
||
|
# poor man's root switch
|
||
|
# NB: 50-users creates predefined users
|
||
|
|
||
|
cat >> /etc/openssh/sshd_config << EOF
|
||
|
PermitRootLogin yes
|
||
|
UseDNS no
|
||
|
EOF
|