[disko] Bit of a hack but the storage partition now gets mounted after zroot using a file on the disk.

This commit is contained in:
ahtlon
2025-01-24 18:30:31 +01:00
parent fb222bc1a4
commit 4a67683462
4 changed files with 6 additions and 6 deletions

View File

@@ -37,9 +37,11 @@ trap cleanup EXIT
# Create the directory where sshd expects to find the host keys
install -d -m755 "$temp/etc/ssh/"
install -d -m755 "$temp/root/"
diskKey=$(sops -d machines/$hostname/disk.key)
echo "$diskKey" > /tmp/secret.key
echo "$diskKey" > $temp/root/secret.key
ssh-keygen -f $temp/etc/ssh/"$hostname" -t ed25519 -N ""
ssh-keygen -f $temp/etc/ssh/initrd -t ed25519 -N ""