diff --git a/default/hooks/firstboot b/default/hooks/firstboot index ca784d1..5328b85 100644 --- a/default/hooks/firstboot +++ b/default/hooks/firstboot @@ -10,14 +10,14 @@ cat > $ROOTDIR/etc/init.d/firstboot << __END__ update-rc.d -f firstboot remove -for f in rsa dsa ecdsa; do rm -rf /etc/ssh/ssh_host_\${f}_key; done -echo "generating ssh rsa key..." -ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key -C "" -N "" -echo "generating ssh dsa key..." -ssh-keygen -q -t dsa -f /etc/ssh/ssh_host_dsa_key -C "" -N "" -echo "generating ssh ecdsa key..." -ssh-keygen -q -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -C "" -N "" -__END__ +# generating ssh host key to be unique +#for f in rsa dsa ecdsa; do rm -rf /etc/ssh/ssh_host_\${f}_key; done +#echo "generating ssh rsa key..." +#ssh-keygen -q -t rsa -f /etc/ssh/ssh_host_rsa_key -C "" -N "" +#echo "generating ssh dsa key..." +#ssh-keygen -q -t dsa -f /etc/ssh/ssh_host_dsa_key -C "" -N "" +#echo "generating ssh ecdsa key..." +#ssh-keygen -q -t ecdsa -f /etc/ssh/ssh_host_ecdsa_key -C "" -N "" chmod +x $ROOTDIR/etc/init.d/firstboot fakechroot chroot $ROOTDIR update-rc.d firstboot start 99 S