Moved key location to .ssh directory

This commit is contained in:
Jim Martens 2020-01-04 00:24:18 +01:00
parent d376b93e2c
commit f404f39953
4 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
# ---> Vagrant
# General
.vagrant/
.ssh/
# Log files (if you are creating logs in debug mode, uncomment this)
# *.logs

0
.ssh/.gitkeep Normal file
View File

View File

@ -4,7 +4,7 @@ This repo helps you to test ansible playbooks on an Ubuntu 18 VM.
## Requirements
1. Copy ``id_ed25519.pub`` into the directory you cloned this repo into.
1. Copy ``id_ed25519.pub`` to ``.ssh/``.
2. Install vagrant.
## Usage

2
Vagrantfile vendored
View File

@ -65,6 +65,6 @@ Vagrant.configure("2") do |config|
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
config.vm.provision "shell", inline: <<-SHELL
cat /vagrant/id_ed25519.pub >> /home/vagrant/.ssh/authorized_keys
cat /vagrant/.ssh/id_ed25519.pub >> /home/vagrant/.ssh/authorized_keys
SHELL
end