Make strace and tcpdump available everywhere.

* modules/openstack_project/manifests/template.pp: Some images we
use, notably CentOS, lack strace and tcpdump which our Ubuntu images
have by default. The package names are the same across the platforms
we use, so it's safe to just ensure they're present everywhere and
be done with it.

Change-Id: I2fe9469c27ed8db8e718bb4923c45ad22491ed1c
Reviewed-on: https://review.openstack.org/34270
Reviewed-by: Monty Taylor <mordred@inaugust.com>
Approved: Clark Boylan <clark.boylan@gmail.com>
Reviewed-by: Clark Boylan <clark.boylan@gmail.com>
Tested-by: Jenkins
This commit is contained in:
Jeremy Stanley 2013-06-24 21:49:45 +00:00 committed by Jenkins
parent c64aef63d4
commit 1b02472e7d

View File

@ -25,4 +25,12 @@ class openstack_project::template (
install_users => $install_users,
certname => $certname,
}
package { 'strace':
ensure => present,
}
package { 'tcpdump':
ensure => present,
}
}