mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
283 B
19 lines
283 B
5 years ago
|
#!/usr/bin/env bash
|
||
6 years ago
|
|
||
|
# Install OpenSSH
|
||
|
|
||
5 years ago
|
script_dir="$(cd -P "$(dirname "$BASH_SOURCE")" && pwd)"
|
||
|
cd $script_dir
|
||
6 years ago
|
. set.sh
|
||
|
|
||
5 years ago
|
ssh_port=${1:-521}
|
||
6 years ago
|
|
||
|
# Install dependencies
|
||
|
apt-get -y install ssh
|
||
|
|
||
|
cat <<EOF>> /etc/ssh/sshd_config
|
||
5 years ago
|
Port $ssh_port
|
||
6 years ago
|
PasswordAuthentication no
|
||
|
AllowUsers root
|
||
|
EOF
|