diff options
| author | Michael Adam <obnox@samba.org> | 2020-05-06 00:59:42 +0200 |
|---|---|---|
| committer | spuiuk <sachin.prabhu@gmail.com> | 2020-05-06 00:28:58 +0100 |
| commit | 7970eab3b6569d8bf4e43d48237a2c57bf67eae6 (patch) | |
| tree | 05962c53d0893f69dae8ddd06ef46a9b19b37ffa | |
| parent | a4121d111f1ada17184d623e4e9d2715b941304f (diff) | |
Fix calling ssh in the Makefile
By accident an ssh command using /root/.vagrant.d/insecure_private_key
was commited into the tree. Fix this by using the pre-created
ssh-config-host.
Signed-off-by: Michael Adam <obnox@samba.org>
| -rw-r--r-- | vagrant/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vagrant/Makefile b/vagrant/Makefile index b7f4850..fe9bd10 100644 --- a/vagrant/Makefile +++ b/vagrant/Makefile @@ -1,5 +1,5 @@ INVENTORY := ./vagrant_ansible_inventory -VSSH := ssh -F ansible/ssh-config-setup -i /root/.vagrant.d/insecure_private_key +VSSH := ssh -F ssh-config-host local: @ansible-playbook --inventory localhost, local.yml |
