8 lines
153 B
Bash
8 lines
153 B
Bash
#!/bin/sh
|
|
|
|
. /etc/sysconfig/ssh
|
|
|
|
if [ "x$SSHD_AUTO_KEYGEN" != "xno" ]; then
|
|
echo "Checking for missing server keys in /etc/ssh"
|
|
ssh-keygen -A
|
|
fi
|