I have the following lines in my config file
commands:
install_packages:
command: sudo yum -y install libxml2-devel libxslt-devel
I have also tried it the way of
packages:
yum:
libxml2-devel: []
other package
Both of which seem to fail to install the packages.
I am trying to install the pyusps python module and the installation will fail without those packages. I can SSH in and install them manually and than pyusps will install
I am not sure where I am going wrong here.
Thanks