Merge "Add packages needed for asciidoc jobs."

This commit is contained in:
Jenkins 2012-07-23 21:44:36 +00:00 committed by Gerrit Code Review
commit 918e5e96c8

View File

@ -23,11 +23,14 @@ class jenkins_slave($ssh_key, $sudo = false, $bare = false, $user = true) {
# Packages that most jenkins slaves (eg, unit test runners) need # Packages that most jenkins slaves (eg, unit test runners) need
$standard_packages = [ $standard_packages = [
"apache2", "apache2",
"asciidoc", # for building gerrit "asciidoc", # for building gerrit/building openstack docs
"cdbs", "cdbs",
"curl", "curl",
"debootstrap", "debootstrap",
"dnsmasq-base", "dnsmasq-base",
"docbook-xml", # for building openstack docs
"docbook5-xml", # for building openstack docs
"docbook-xsl", # for building openstack docs
"ebtables", "ebtables",
"gawk", "gawk",
"graphviz", "graphviz",
@ -62,12 +65,14 @@ class jenkins_slave($ssh_key, $sudo = false, $bare = false, $user = true) {
"python-zmq", # zeromq unittests (not pip installable) "python-zmq", # zeromq unittests (not pip installable)
"python3-all-dev", "python3-all-dev",
"screen", "screen",
"sgml-data",
"socat", "socat",
"sqlite3", "sqlite3",
"swig", "swig",
"unzip", "unzip",
"vlan", "vlan",
"wget", "wget",
"xsltproc", # for building openstack docs
"pyflakes"] "pyflakes"]
if ($bare == false) { if ($bare == false) {