summaryrefslogtreecommitdiff
path: root/alpine/ssh.sh
blob: 875ef8afbc2b312ac2b7cacc51ce131e544a2033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# Copyright (C) 2025-2026 Maria Lisina
# SPDX-License-Identifier: Apache-2.0
#
# SSH configuration

set -e

cat << EOF > /etc/ssh/sshd_config.d/root.conf
PermitRootLogin yes
PubkeyAuthentication yes
PasswordAuthentication no
KbdInteractiveAuthentication no
EOF