I'm trying to fully automate VM-provisioning. Therefore I trying to get Ubuntu to install without any passwords. Authentication is configured afterwards by puppet.
I tried the following statements inside my kickstart file: I tried user --disabled or d-i passwd/root-login boolean false to get rid of the user account. And i tried rootpw --disabled, d-i passwd/make-user boolean false or d-i passwd/root-password-crypted "!" to get rid of the root password.
But the installation process always asks either for a root password or for a name for a sudo account.
Is there one more switch to get me through an installation without root-passwd AND without sudo user?
PS: A ssh authorized key for root would be acceptable.