GamerGun

Results 11 comments of GamerGun

We maintain many repositories with customer specific playbooks and host data, so ansible-ssh really helps us logging in on the right customer system if needed, but also have multiple cases...

Sure! ansible.cfg ```` [defaults] retry_files_enabled = False roles_path=./roles [ssh_connection] ssh_args = -F ssh.config -vv ```` ssh.config ```` Host staging_bastion User gamergun HostName 6.7.8.9.0 ControlMaster auto ControlPath ~/.ssh/ansible-%r@%h:%p ControlPersist 5m StrictHostKeyChecking...

@selivan Sure thing Ansible is installed locally with brew (Mac) ```` ansible 2.10.6 config file = /Users/tomextel/git/ansible-playbooks-uniface/ansible.cfg configured module search path = ['/Users/tomextel/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules'] ansible python module location = /usr/local/Cellar/ansible/3.0.0/libexec/lib/python3.9/site-packages/ansible...

Although i'm a bit confused, just tried ansible-ssh on this customer and that seemed to work with a jumphost? ```` ./ansible-ssh stg-jira ssh_args: -F ssh.config ssh_executable: ssh ansible_host: 1.2.3.4 ansible_user:...

Exact same issue on R740 From the Redfish API: "BootMode":"Uefi" Playbook: attributes: "BootMode": "BIOS" Result: No changes found to commit!

Seems like it's really picky, this worked... attributes: BootMode: "Bios"

Same here 2023-11-14 18:39:21 WARNING SNATCHQUEUE-SNATCH-526 :: Unhashable type encountered. Please report this warning to the developers. TypeError('Object of type Episode is not JSON serializable') Traceback (most recent call last):...

Same issue here, GUI becomes unresponsive

I'm trying to achieve setting LegacyBootProto the legacy way, but i can't seem to get it to work. I've been trying to do so with Ansible, using the Py script...

Hi @texroemer Well your whitepaper actually solved it for me, so thank you very much. In case someone is interested; ```` - hosts: all gather_facts: false become: false vars: idrac_username:...