/etc/init/ssh-keygen.conf is in lxc-android-config 0.230+16.04.20160328-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 | start on starting ssh
task
script
[ ! -e /etc/ssh/ssh_host_rsa_key ] && \
ssh-keygen -f /etc/ssh/ssh_host_rsa_key -N '' -t rsa >/dev/null 2>&1
[ ! -e /etc/ssh/ssh_host_dsa_key ] && \
ssh-keygen -f /etc/ssh/ssh_host_dsa_key -N '' -t dsa >/dev/null 2>&1
end script
|