« Integrating Ansible with Hashicorp VaultMacOS - change account to admin from command line »

1 comment

Comment from: [Member]

It seems that as of today the above playbook fails because sftp is no longer working on the udmpro. To fix that I modified my ansible inventory to use scp as the transfer mechanism instead. Here’s what my inventory file looks like now:


 

---
all:
  hosts:
  children:
    udmpro:
      hosts:
        gw.montco.net:
          ansible_connection: ssh
          ansible_user: "root"
          ansible_ssh_pass: "putyourpasswordhere"
          ansible_ssh_private_key_file: "/home/ansible/.ssh/id_rsa.pub"
          ansible_ssh_transfer_method: scp

12/03/22 @ 14:40


Form is loading...