From 3b64b86cb2e424ef78ab6f7d976d4d21ae05f0e2 Mon Sep 17 00:00:00 2001 From: elbeho Date: Sat, 12 Sep 2015 11:14:17 +0200 Subject: [PATCH 1/2] Update README.md (Authn failure) --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 005c16a..51fee76 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,15 @@ Known Issues * missing setup +* "Warning: Authentication failure. Retrying..." during vagrant up + + * ctrl-C or wait till it ends + * edit Vagrantfile to change config.ssh.private_key_path to a private key of yours and be sure it is added to your ssh-agent + * ssh vagrant@localhost -p 2222 (password: vagrant) + * sudo su - act_developer + * edit .ssh/authorized_keys to add the public key of the key to set in config.ssh.private_key_path + + Acknowledgements ================ From 931c521f30152b04794837de22bc51e690c047a9 Mon Sep 17 00:00:00 2001 From: elbeho Date: Tue, 15 Sep 2015 23:26:55 +0200 Subject: [PATCH 2/2] Update README.md (Authn failure) --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 51fee76..6c3946b 100644 --- a/README.md +++ b/README.md @@ -109,7 +109,9 @@ Known Issues * edit Vagrantfile to change config.ssh.private_key_path to a private key of yours and be sure it is added to your ssh-agent * ssh vagrant@localhost -p 2222 (password: vagrant) * sudo su - act_developer - * edit .ssh/authorized_keys to add the public key of the key to set in config.ssh.private_key_path + * edit .ssh/authorized_keys to add the public key of the key in config.ssh.private_key_path + * vagrant halt + * vagrant up Acknowledgements