19070: Still trying to fix test_with_arvbox
[arvados.git] / doc / _includes / _install_packages.liquid
1 {% comment %}
2 packages_to_install should be a list
3 fallback on arvados_component if not defined
4 {% endcomment %}
5
6 {% if package_to_install == nil %}
7   {% assign packages_to_install = arvados_component | split: " " %}
8 {% endif %}
9
10 h2(#install-packages). Install {{packages_to_install | join: " and " }}
11
12 h3. Red Hat and Centos
13
14 <notextile>
15 <pre><code># <span class="userinput">yum install {{packages_to_install | join: " "}}</span>
16 </code></pre>
17 </notextile>
18
19 h3. Debian and Ubuntu
20
21 <notextile>
22 <pre><code># <span class="userinput">apt-get install {{packages_to_install  | join " "}}</span>
23 </code></pre>
24 </notextile>