Merge "Fix ssh key cleanup to run in chroot"

This commit is contained in:
Jenkins 2016-04-06 19:12:56 +00:00 committed by Gerrit Code Review
commit 69c811870c
1 changed files with 1 additions and 1 deletions

View File

@ -14,5 +14,5 @@ set -o pipefail
# simple-init.
if [ -d /etc/ssh ] ; then
sudo find /etc/ssh -name 'ssh_host*' -type f -delete
sudo find $TARGET_ROOT/etc/ssh -name 'ssh_host*' -type f -delete
fi