Moved key location to .ssh directory

Этот коммит содержится в:
Jim Martens 2020-01-04 00:24:18 +01:00
родитель d376b93e2c
Коммит f404f39953
4 изменённых файлов: 3 добавлений и 2 удалений

1
.gitignore поставляемый
Просмотреть файл

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

0
.ssh/.gitkeep Обычный файл
Просмотреть файл

Просмотреть файл

@ -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 поставляемый
Просмотреть файл

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