Fix name of libxslt dev package

`libxslt-dev` is the virtual package. Puppet can install it fine, but
can't detect that it's already installed and will attempt to reinstall
it on every run, breaking idempotency tests. Use the real name of the
package, `libxslt1-dev`, to avoid this. This name is the same for
Trusty, Xenial, and Bionic.

Change-Id: If65865c5d895559f48db325b65f3e72445ef9d4b
This commit is contained in:
Colleen Murphy 2018-06-22 21:26:35 +02:00 committed by Colleen Murphy
parent 7cd8a2d4a3
commit c945f0e3f1
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ class nodepool (
'libgmp-dev', # transitive dep of paramiko
# xml2 and xslt are needed to build python lxml.
'libxml2-dev',
'libxslt-dev',
'libxslt1-dev',
]
ensure_packages($packages, {'ensure' => 'present'})
@ -136,7 +136,7 @@ class nodepool (
Package['libffi-dev'],
Package['libssl-dev'],
Package['libxml2-dev'],
Package['libxslt-dev'],
Package['libxslt1-dev'],
Package['libgmp-dev'],
],
}