7 lines
124 B
Bash
7 lines
124 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
cat <<_EOF_ >>"${TARGET_DIR}/etc/ssh/sshd_config"
|
||
|
PermitRootLogin yes
|
||
|
PasswordAuthentication yes
|
||
|
_EOF_
|