Browse Source

CentOS 6 Tweaks

v0.0.11
John Haverlack 3 years ago
parent
commit
c052e28519
  1. 2
      index.js
  2. 46
      skqitam-client/index.js
  3. 2
      web/root/mkdocs.yml
  4. 2
      web/root/site/404.html
  5. 2
      web/root/site/bootstrap.html
  6. 2
      web/root/site/build.html
  7. 2
      web/root/site/cloning.html
  8. 2
      web/root/site/code.html
  9. 2
      web/root/site/contact.html
  10. 2
      web/root/site/editing.html
  11. 2
      web/root/site/equations.html
  12. 2
      web/root/site/footnotes.html
  13. 2
      web/root/site/icons.html
  14. 2
      web/root/site/index.html
  15. 2
      web/root/site/install.html
  16. 2
      web/root/site/license.html
  17. 2
      web/root/site/menu.html
  18. 2
      web/root/site/optional.html
  19. 2
      web/root/site/pdf.html
  20. 2
      web/root/site/search.html
  21. BIN
      web/root/site/sitemap.xml.gz
  22. 2
      web/root/site/swipe.html
  23. 2
      web/root/site/test.html
  24. 2
      web/root/site/version.html
  25. 2
      web/root/site/versions.html

2
index.js

@ -215,7 +215,7 @@ app.use(function (req, res, next) {
// Starting Express Web Service
app.listen(process['CONFIG']['GLOBAL']['WEBUI_PORT'], function () {
console.log ("Sikuliaq Cyber Asset Manager Server")
console.log (" - Version: v" + process['CONFIG']['LOCAL']['PACKAGE']['version'] + ' ' + process['CONFIG']['LOCAL']['PACKAGE']['version_date'])
console.log (" - Version: v" + process['CONFIG']['LOCAL']['PACKAGE']['version'] + ' ' + process['CONFIG']['LOCAL']['PACKAGE']['version_date'] + ' (Beta)')
console.log (" - Copyright (C) 2021 University of Alaska Fairbanks - College of Fisheries and Ocean Sciences - R/V Sikuliaq")
console.log (" - Author: John Haverlack (jehaverlack@alaska.edu)\n")
console.log ("Status: STARTED")

46
skqitam-client/index.js

@ -45,7 +45,7 @@ process['CONFIG']['LOCAL'] = it_am_init()
console.log ("")
console.log ("Sikuliaq IT Asset Manager Client")
console.log (" Version: " + process['CONFIG']['LOCAL']['PACKAGE']['version'] + ' ' + process['CONFIG']['LOCAL']['PACKAGE']['version_date'])
console.log (" Version: " + process['CONFIG']['LOCAL']['PACKAGE']['version'] + ' ' + process['CONFIG']['LOCAL']['PACKAGE']['version_date'] + ' (Beta)')
console.log (" Copyright (C) 2021 University of Alaska Fairbanks - College of Fisheries and Ocean Sciences - R/V Sikuliaq")
console.log (" Author: John Haverlack (jehaverlack@alaska.edu)")
console.log ("")
@ -168,6 +168,38 @@ switch (process['CONFIG']['LOCAL']['OS']['PLATFORM']) {
console.log('ERROR: Unsupported Distribution: ' + process['CONFIG']['LOCAL']['OS']['DISTRO'])
process.exit(1)
}
switch (process['CONFIG']['LOCAL']['OS']['DISTRO']) {
case 'Raspbian GNU/Linux':
let cmd_rpi_hw = 'cat /proc/device-tree/model'
try {
am_data['SOURCE']['RASPBERRY_PI_MODEL'] = childProcess.execSync(cmd_rpi_hw, { encoding: 'utf8' })
} catch (err) {
console.log("WARNING: Could not run: " + cmd_rpi_hw + "\n" + err)
}
break;
}
// Facter
try {
let bin_facter = childProcess.execSync('which facter', { encoding: 'utf8' })
try {
am_data['SOURCE']['FACTER'] = {}
facter_lines = String(childProcess.execSync(bin_facter, { encoding: 'utf8' })).split(/\n/)
facter_regx = RegExp(/^(\S+.*)\s+\=\>\s+(\S+.*)/)
for (fl in facter_lines) {
if (mch = facter_lines[fl].match(facter_regx)) {
am_data['SOURCE']['FACTER'][ mch[1] ] = mch[2]
}
}
} catch (err) {
console.log ("WARNING: Could not run: " + bin_facter)
}
} catch (err) {
// Do Nothing
}
break;
case 'darwin':
@ -275,16 +307,20 @@ iatm_upload_data(am_data)
function rpm_list_to_json(rpm_list) {
let json_obj = []
let lines = rpm_list.split(/\n/)
let rpm_info_regx = RegExp(/^(.*):\s+(.*)/)
let rpm_info_regx1 = RegExp(/^(\S.*\S)\s+:\s+(\S.*\S+)\s+(\S.*\S)\s+:\s+(\S.*)/)
let rpm_info_regx2 = RegExp(/^(\S.*\S)\s+:\s+(\S.*)/)
for (l in lines) {
if (lines[l]) {
cmd_rpm_info = '/usr/bin/rpm -qi ' + lines[l]
cmd_rpm_info = 'rpm -qi ' + lines[l]
let rpm_info = childProcess.execSync(cmd_rpm_info, { encoding: 'utf8' })
let rpm_info_lines = rpm_info.split(/\n/)
let pkg = {}
for (rl in rpm_info_lines) {
if (mch = rpm_info_lines[rl].match(rpm_info_regx)) {
if (mch = rpm_info_lines[rl].match(rpm_info_regx1)) {
pkg[ mch[1].replace(/\s+/, '') ] = mch[2]
pkg[ mch[3].replace(/\s+/, '') ] = mch[4]
} else if (mch = rpm_info_lines[rl].match(rpm_info_regx2)) {
pkg[ mch[1].replace(/\s+/, '') ] = mch[2]
}
}
@ -549,7 +585,7 @@ function apt_history_to_json() {
}
} catch (err) {
console.log('ERROR: Failed to Extract Apt Log History ' + err)
console.log('ERROR: Failed to Append Apt Log History ' + err)
process.exit(1)
}
} catch (err) {

2
web/root/mkdocs.yml

@ -5,7 +5,7 @@ copyright: <p class="small">Copyright &copy; 2021 <a target="_blank" href="https
use_directory_urls: false
extra:
version: 0.0.5 2021-06-17
version: 0.0.5 2021-06-17 (Beta)
repo_url: https://github.alaska.edu/skq/skq-it-am.git
repo_name: <span class="fab fa-git-square"></span>

2
web/root/site/404.html

@ -136,7 +136,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/bootstrap.html

@ -213,7 +213,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/build.html

@ -146,7 +146,7 @@ Each time you edit the site source content files you will need to run the <code>
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/cloning.html

@ -160,7 +160,7 @@ A UA Github (<a href="https://github.alaska.edu">https://github.alaska.edu</a>)
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/code.html

@ -214,7 +214,7 @@ echo "Hello World"
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/contact.html

@ -145,7 +145,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/editing.html

@ -183,7 +183,7 @@ Markdown files can contain inline HTML, or pure Markdown code.
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/equations.html

@ -216,7 +216,7 @@ Markdown supports inline [LaTeX](https://en.wikipedia.org/wiki/LaTeX) equations
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/footnotes.html

@ -146,7 +146,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/icons.html

@ -172,7 +172,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/index.html

@ -174,7 +174,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/install.html

@ -187,7 +187,7 @@ mkdocs, version 1.1 from /usr/local/lib/python3.6/site-packages/mkdocs (Python 3
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/license.html

@ -149,7 +149,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/menu.html

@ -158,7 +158,7 @@ However both top and sub nav menu items can also be both Markdown or URL links.
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/optional.html

@ -169,7 +169,7 @@ v12.14.1
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/pdf.html

@ -151,7 +151,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/search.html

@ -142,7 +142,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

BIN
web/root/site/sitemap.xml.gz

2
web/root/site/swipe.html

@ -168,7 +168,7 @@ $(&quot;body&quot;).on('swiperight', function(e) {
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/test.html

@ -183,7 +183,7 @@ In modern web browsers (Firefox, Chrome, etc) you can right click in the backgro
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/version.html

@ -140,7 +140,7 @@ A custom site <b>version</b> date has been added to the <code>mkdocs.yml</code>
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/versions.html

@ -148,7 +148,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Version: 0.0.5 2021-06-17 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

Loading…
Cancel
Save