Fix files not being directories

This commit is contained in:
Sandro - 2023-01-05 00:46:35 +01:00
parent c020327913
commit 85709b2a81
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -141,10 +141,10 @@ lib.mkMerge [
# never leave openssh in a state that you cannot log in # never leave openssh in a state that you cannot log in
"d /etc 0755 root root -" "d /etc 0755 root root -"
"d /etc/ssh 0755 root root -" "d /etc/ssh 0755 root root -"
"d /etc/ssh/ssh_host_ed25519_key 0700 root root -" "f /etc/ssh/ssh_host_ed25519_key 0700 root root -"
"d /etc/ssh/ssh_host_ed25519_key.pub 0744 root root -" "f /etc/ssh/ssh_host_ed25519_key.pub 0744 root root -"
"d /etc/ssh/ssh_host_rsa_key 0700 root root -" "f /etc/ssh/ssh_host_rsa_key 0700 root root -"
"d /etc/ssh/ssh_host_rsa_key.pub 0744 root root -" "f /etc/ssh/ssh_host_rsa_key.pub 0744 root root -"
]; ];
# Reboot on hang # Reboot on hang