<p>This page contains links to multiple Glacier package databases.</p>
<p>Packages should correspond to your system's profile. If you don't know what your system's profile is, it can be queried with the following command:</p>
<code>(user)$ echo $GLACIER_SYSTEM_PROFILE</code>
<p></p>
<script>
function myfunction() {
var input, filter, ul, li, a, i, txtValue;
input = document.getElementById('myInput');
filter = input.value.toUpperCase();
ul = document.getElementById("myUL");
li = ul.getElementsByTagName('li');
for (i = 0; i <li.length;i++){
a = li[i].getElementsByTagName("a")[0];
txtValue = a.textContent || a.innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {