Skip to content

Tag: ansible

Error using expect to execute shell script

I am using an expect script to automatically answer prompts in a shell script designed to add Linux systems to active directory. I only have three prompts: location, username, password. I am using Ansible to execute it. The issue when the script executes, it tries to install ~ 49 rpms on the vm, adcli, realmd…

Install packages from a list through ansible

I have 2 servers named testserver and vsphere server. Ansible is installed on testserver and I have a list of packages stored in a text file packages.txt. How can I install those packages on vsphere server through ansible? This is my packages.txt file. I just have to fetch the package name from the packages.t…

ansible ansible_default_ipv4 set wrong interface

I am trying to configure a host and automatically select the relevant interface. For that I am trying to run the Ansible task: For some reason it stores in network_interfaces_to_configure an interface that is deactivated — it sets it to enp1s0f1 and it should be set to enp1s0f0 The host have the following int…

Ansible Replace the string variable in uri module

I want to download the filebeat7.15.2 binaries form artifactory. I am passing the version in my playbook as 7-15-2, but want to change in the playbook to 7.15.2 in uri module only. My binary is stored in example.com/artifactory/mvn-public-local/com/dbdb/rf/devops/filebeat/7-15-2/filebeat-7.15.2-linux-x86_64.t…