mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-11-05 09:09:21 +01:00
8 lines
176 B
Bash
Executable File
8 lines
176 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -x
|
|
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
|
|
set +x
|