Default root ssh key (empty)

pull/19/head
Inex Code 2022-07-13 14:50:03 +03:00
parent b8bdb65e6d
commit 2e40bf243b
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ in
resticPassword = (if jsonData ? "resticPassword" then jsonData.resticPassword else null);
ssh = {
enable = (if jsonData ? "ssh.enable" then jsonData.ssh.enable else true);
rootKeys = (if jsonData ? "ssh.rootKeys" then jsonData.ssh.rootKeys else [ ]);
rootKeys = (if jsonData ? "ssh.rootKeys" then jsonData.ssh.rootKeys else [ "" ]);
passwordAuthentication = (if jsonData ? "ssh.passwordAuthentication" then jsonData.ssh.passwordAuthentication else true);
};
users = (if jsonData ? "users" then jsonData.users else [ ]);