Moved key location to .ssh directory

Esse commit está contido em:
Jim Martens 2020-01-04 00:24:18 +01:00
commit f404f39953
4 arquivos alterados com 3 adições e 2 exclusões

1
.gitignore externo
Ver arquivo

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

Ver arquivo

@ -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 externo
Ver arquivo

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