mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-26 21:29:22 +01:00
6 lines
162 B
Plaintext
6 lines
162 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
mkdir -p /etc/ssh
|
||
|
cat ssh_config > /etc/ssh/ssh_config
|
||
|
cat sshd_config > /etc/ssh/sshd_config
|
||
|
chmod a-x,u+rw,g+r-w,o+r-w /etc/ssh/ssh?_config
|