2016-07-26 14:01:58 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-03-29 17:27:33 -05:00
|
|
|
set -e
|
|
|
|
|
2018-08-11 16:38:33 -05:00
|
|
|
[ -r /etc/ssh/ssh_host_rsa_key ] || {
|
2016-07-26 14:01:58 -05:00
|
|
|
rm -f /etc/ssh/ssh_host_*_key*
|
|
|
|
/usr/bin/ssh-keygen -t rsa -N '' -f /etc/ssh/ssh_host_rsa_key
|
|
|
|
}
|