11 lines
204 B
Plaintext
11 lines
204 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Remove OpenSSH Host Keys.
|
||
|
#
|
||
|
# This removes openssh-server host keys, they are regenerated by live-config
|
||
|
# on system start.
|
||
|
|
||
|
rm -f /etc/ssh/ssh_host_*_key /etc/ssh/ssh_host_*_key.pub
|