mirror of
https://git.decapod.one/brethil/dotfiles
synced 2024-11-05 11:51:31 +01:00
6 lines
104 B
Bash
6 lines
104 B
Bash
|
#!/bin/bash
|
||
|
if [ ! -f /etc/ssh/ssh_host_ed25519_key.pub ]; then
|
||
|
ssh-keygen -A
|
||
|
fi
|
||
|
/usr/sbin/sshd -D -e
|