# boot_custom_os configuration — edit this file before running any script. # SSH alias of the target (e.g. root@192.168.1.10) REMOTE="" # SSH public key to inject into the new OS image. # Default: reads your local ed25519 key. SSH_KEY="${SSH_KEY:-$(cat ~/.ssh/id_ed25519.pub 2>/dev/null)}" # Common SSH options used by all scripts. # StrictHostKeyChecking=no + UserKnownHostsFile=/dev/null avoid known_hosts # churn when the rescue dropbear and the OS sshd present different host keys. # LogLevel=ERROR silences the "Permanently added ... to known hosts" warning. SSH_OPTS="-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -o LogLevel=ERROR"