Fix ssh keys for x86

This commit is contained in:
Tanguy Herbron 2022-05-23 19:11:51 +02:00
parent 49a0086aea
commit 4de7354c45

View File

@ -469,5 +469,6 @@ d-i finish-install/reboot_in_progress note
d-i preseed/late_command string apt-install zsh; in-target \
sudo -u creator mkdir -p -m 700 /home/creator/.ssh; \
sudo -u creator install -m 600 /home/creator/.ssh/authorized_keys; \
sudo -u creator echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDYsz4jdyzf9UcJ8eEavVmi+DNYE3ioeJBfTlVMw7Vsb tanguy@Diogenes" > /home/creator/.ssh/authorized_keys;
sudo -u creator echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDYsz4jdyzf9UcJ8eEavVmi+DNYE3ioeJBfTlVMw7Vsb tanguy@Diogenes" > /home/creator/.ssh/authorized_keys; \
sed -i -E 's/#?PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config;