Merge "Ensure build-essential and python-dev are installed"

This commit is contained in:
Jenkins 2015-12-01 18:12:55 +00:00 committed by Gerrit Code Review
commit e50dc48645
1 changed files with 9 additions and 0 deletions

View File

@ -94,6 +94,14 @@ class openstackci::logserver (
require => File['/srv/static/logs'],
}
package { 'build-essential':
ensure => 'present',
}
package { 'python-dev':
ensure => 'present',
}
package { 'keyring':
ensure => 'latest',
provider => 'pip',
@ -113,6 +121,7 @@ class openstackci::logserver (
path => '/usr/local/bin:/usr/bin:/bin/',
refreshonly => true,
subscribe => Vcsrepo['/opt/os-loganalyze'],
require => [Package['build-essential'], Package['python-dev']],
notify => Service['httpd'],
}