summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorgueux2015-08-26 14:58:08 +0000
committeradmin2015-08-26 14:58:08 +0000
commit5c55b76bca2eeb34dd6868f568e5acb86d571203 (patch)
tree5ad2a8ae71c9c1387753277bb7c6f8e443abd5d0 /doc
parent4c1a9b9aef6cdceb6742de38a8d6fe05dcd85bb0 (diff)
Diffstat (limited to 'doc')
-rw-r--r--doc/forum/Could_not_load_host_key:___47__etc__47__ssh__47__ssh__95__host__95__ed25519__95__key.mdwn23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/forum/Could_not_load_host_key:___47__etc__47__ssh__47__ssh__95__host__95__ed25519__95__key.mdwn b/doc/forum/Could_not_load_host_key:___47__etc__47__ssh__47__ssh__95__host__95__ed25519__95__key.mdwn
new file mode 100644
index 00000000..cabf6ed5
--- /dev/null
+++ b/doc/forum/Could_not_load_host_key:___47__etc__47__ssh__47__ssh__95__host__95__ed25519__95__key.mdwn
@@ -0,0 +1,23 @@
+After adding a new key with
+
+ ssh-keygen -C '' -N '' -f ssh_host_ed25519_key -t ed25519
+
+And making propellor aware of this with the property
+
+ Ssh.hostKeys "myhost" [ (SshEd25519, "ssh-ed25519 ...") ]
+
+and running
+
+ cat ssh_host_ed25519_key | propellor --set 'SshPrivKey SshEd25519 ""' 'myhost'
+ propellor --spin myhost
+
+I got the following error in my auth.log:
+
+ error: Could not load host key: /etc/ssh/ssh_host_ed25519_key
+
+after adding a newline at the end of /etc/ssh/ssh_host_ed25519_key, everything works well...
+
+Is that a bug in propellor?
+
+
+