Skip to content
Advertisement

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.txt

JavaScript

And this the yml file inside testserver

JavaScript

Test.sh contains

JavaScript

When I run this ansible script, I am getting an error: no packages.txt is found on vsphere. Any help would be appreciated

Advertisement

Answer

Firstly I would suggest that you use the yum module to install the packages. We can pass a list of packages to install by reading the packages.txt file. Seems this file is on the Ansible machine, so we can use lookup to get file contents.

Example:

JavaScript

Edit

If you have | x86_64 in the file for every package, it wouldn’t work with your shell script either. The easiest way would be get the clean list of packages with awk (above example updated), and use it for package install.

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement