diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-06-06 16:04:29 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-06-06 16:05:44 +1000 |
commit | 7703ae5f5d42eb302ded51705166ff6e19c92892 (patch) | |
tree | 58ed361b9d30dbdbbec38a6f376f8ee8a4a0a144 /contrib/aix/buildbff.sh | |
parent | e8d59fef1098e24f408248dc64e5c8efa5d01f3c (diff) |
Use ssh-keygen -A to generate missing host keys.
Instead of testing for each specific key type, use ssh-keygen -A to
generate any missing host key types.
Diffstat (limited to 'contrib/aix/buildbff.sh')
-rwxr-xr-x | contrib/aix/buildbff.sh | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/contrib/aix/buildbff.sh b/contrib/aix/buildbff.sh index 00b384dc7..55113d9d3 100755 --- a/contrib/aix/buildbff.sh +++ b/contrib/aix/buildbff.sh | |||
@@ -240,21 +240,7 @@ echo | |||
240 | 240 | ||
241 | # Generate keys unless they already exist | 241 | # Generate keys unless they already exist |
242 | echo Creating host keys if required. | 242 | echo Creating host keys if required. |
243 | if [ -f "$sysconfdir/ssh_host_key" ] ; then | 243 | $bindir/ssh-keygen -A |
244 | echo "$sysconfdir/ssh_host_key already exists, skipping." | ||
245 | else | ||
246 | $bindir/ssh-keygen -t rsa1 -f $sysconfdir/ssh_host_key -N "" | ||
247 | fi | ||
248 | if [ -f $sysconfdir/ssh_host_dsa_key ] ; then | ||
249 | echo "$sysconfdir/ssh_host_dsa_key already exists, skipping." | ||
250 | else | ||
251 | $bindir/ssh-keygen -t dsa -f $sysconfdir/ssh_host_dsa_key -N "" | ||
252 | fi | ||
253 | if [ -f $sysconfdir/ssh_host_rsa_key ] ; then | ||
254 | echo "$sysconfdir/ssh_host_rsa_key already exists, skipping." | ||
255 | else | ||
256 | $bindir/ssh-keygen -t rsa -f $sysconfdir/ssh_host_rsa_key -N "" | ||
257 | fi | ||
258 | echo | 244 | echo |
259 | 245 | ||
260 | # Set startup command depending on SRC support | 246 | # Set startup command depending on SRC support |