Moved key location to .ssh directory

This commit is contained in:
Jim Martens 2020-01-04 00:24:18 +01:00
förälder d376b93e2c
incheckning f404f39953
4 ändrade filer med 3 tillägg och 2 borttagningar

1
.gitignore vendored
Visa fil

@ -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
Visa fil

Visa fil

@ -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
Visa fil

@ -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