-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First boot customization? #94
Comments
With the Raspberry Pi Imager, you can pre-configure the image: https://www.raspberrypi.com/documentation/computers/getting-started.html#raspberry-pi-imager |
Sorry, I should clarify: in a repeatable and scriptable manner. Before bookworm and the systemd disaster this was possible in a supported manner. This also doesn't address the underlying question: has cloud-init been abandoned? |
Ah right, that is somewhat lacking. On first boot, [user]
name = "michaing"
password = "some_plain_password"
is_encrypted = false
[ssh]
enabled = true
password_authentication = true The password can be also given encrypted, but would need to check the algorithm. An SSH key can be provided, but I am currently not sure how to define it correctly. Probably like this as array: authorized_keys = [ "ssh-ed25519 XXXXXXXXXXXXXXXX comment" ] |
Per this comment it sounds like cloud-init support was the end goal. However it looks like that's been abandoned and customizing the first boot is no longer (officially) supported? Are there any plans to at least document config.toml which has lots of paper cuts that aren't documented anywhere?
#82 (comment)
The text was updated successfully, but these errors were encountered: