Browse Source

Added DMIDECODE support

v0.0.11
John Haverlack 3 years ago
parent
commit
448b1249cc
  1. 2
      .gitignore
  2. 4
      package.json
  3. 83
      skqitam-client/index.js
  4. 4
      skqitam-client/package.json
  5. 8
      skqitam-client/skqitam-dmidecode2txt.sh
  6. 1
      web/root/docs/versions.md
  7. 2
      web/root/mkdocs.yml
  8. 2
      web/root/site/404.html
  9. 2
      web/root/site/bootstrap.html
  10. 2
      web/root/site/build.html
  11. 2
      web/root/site/cloning.html
  12. 2
      web/root/site/code.html
  13. 2
      web/root/site/contact.html
  14. 2
      web/root/site/editing.html
  15. 2
      web/root/site/equations.html
  16. 2
      web/root/site/footnotes.html
  17. 2
      web/root/site/icons.html
  18. 2
      web/root/site/index.html
  19. 2
      web/root/site/install.html
  20. 2
      web/root/site/license.html
  21. 2
      web/root/site/menu.html
  22. 2
      web/root/site/optional.html
  23. 2
      web/root/site/pdf.html
  24. 2
      web/root/site/search.html
  25. 2
      web/root/site/search/search_index.json
  26. 8
      web/root/site/sitemap.xml
  27. BIN
      web/root/site/sitemap.xml.gz
  28. 2
      web/root/site/swipe.html
  29. 2
      web/root/site/test.html
  30. 2
      web/root/site/version.html
  31. 3
      web/root/site/versions.html

2
.gitignore

@ -5,6 +5,8 @@ node_modules/*
*.DS_Store
download/skqitam-client.tgz
download/skqitam-client.zip
download/win7-x64-installer/*
download/skqitam-client-win7x6-installer.zip
itam-data/hosts/*
itam-data/host-id-map.json
itam-data/logs/*

4
package.json

@ -1,7 +1,7 @@
{
"name": "skq-it-am",
"version": "0.0.5",
"version_date": "2021-06-17",
"version": "0.0.6",
"version_date": "2021-06-21",
"description": "Sikuliaq IT Asset Manager",
"copyright": "University of Alaska Fairbanks - College of Fisheries and Ocean Science - R/V Sikuliaq",
"main": "index.js",

83
skqitam-client/index.js

@ -1,7 +1,8 @@
var path = require('path')
var fs = require('fs')
var os = require('os')
var request = require("request")
var path = require('path')
var fs = require('fs')
var os = require('os')
// const readline = require('readline')
var request = require("request")
const { v4: uuidv4 } = require('uuid');
const childProcess = require('child_process');
const isAdmin = require('is-admin')
@ -66,6 +67,10 @@ am_data['ITAM']['USERNAME'] = process['CONFIG']['LOCAL']['USER']['USERNAME']
am_data['ITAM']['APP_DIR'] = app_dir
am_data['ITAM']['STARTTIME'] = ts['UTC']['ISO8601'] + ' (UTC)'
am_data['SOURCE'] = {}
am_data['SOURCE']['NODEJS'] = {}
am_data['SOURCE']['DMIDECODE'] = {}
process['CONFIG']['DMIDECODE'] = {}
console.log ("")
@ -89,11 +94,70 @@ let mem_mb = Math.round(mem_bytes/(1024*1024))
console.log (" RAM: " + mem_mb + ' MB')
// console.log (" NET: " + JSON.stringify(os.networkInterfaces(), null, 2))
console.log (" ITAM SRV: " + process['CONFIG']['GLOBAL']['SERVER_BASE_URL'])
console.log (" ITAM DIR: " + am_data['ITAM']['APP_DIR'])
console.log (" TIME: " + am_data['ITAM']['STARTTIME'])
console.log ("")
// Optional Dependancies
if (process['CONFIG']['LOCAL']['OS']['PLATFORM'] == 'linux') {
try {
let stat_dmidecode = fs.lstatSync(path.join('/usr','sbin','dmidecode'))
// console.log(JSON.stringify(stat_dmidecode, null, 2))
try {
let dmidecode_datafile = fs.lstatSync(path.join(am_data['ITAM']['APP_DIR'], 'dmidcode.txt'))
// console.log(JSON.stringify(dmidecode_datafile, null, 2))
let data_dmidecode = fs.readFileSync(path.join(am_data['ITAM']['APP_DIR'], 'dmidcode.txt'), 'utf8')
// console.log(data_dmidecode)
let dmidecode_lines = String(data_dmidecode).split(/\n/)
let regx_dmidecode = RegExp(/^(\S+):\s+(\S+.*)/)
// console.log(JSON.stringify(dmidecode_lines, null, 2))
for (dmil in dmidecode_lines) {
if (dmch = dmidecode_lines[dmil].match(regx_dmidecode)) {
// process['CONFIG']['DMIDECODE'][ dmch[1] ] = dmch[2]
am_data['SOURCE']['DMIDECODE'][ dmch[1] ] = dmch[2]
}
}
// console.log(JSON.stringify(process['CONFIG']['DMIDECODE'] , null, 2))
// console.log(JSON.stringify(am_data['SOURCE']['DMIDECODE'], null, 2))
} catch (err2) {
console.log("MISSING: " + path.join(am_data['ITAM']['APP_DIR'], 'dmidcode.txt'))
console.log("\n#################################################################################")
console.log("OPTIONAL: Dmidecode is installed and can be run with sudo permission to collect\n additional hardware info on physical systems. To do so run the following\n command once and this re-run the skqitam-client.\n")
console.log("sudo " + path.join(am_data['ITAM']['APP_DIR'], 'skqitam-client', 'skqitam-dmidecode2txt.sh') + " " + path.join(am_data['ITAM']['APP_DIR'], 'dmidcode.txt'))
console.log("\n#################################################################################")
}
} catch (err1) {
console.log("\n#################################################################################")
console.log("OPTIONAL: Missing dmidcode. Dmidecode can collect additional hardware\n information but requires elevated permissions. To install dmidcode run:\n")
let sw_source_map = {}
sw_source_map['Debian GNU/Linux'] = 'DEB'
sw_source_map['Linux Mint'] = 'DEB'
sw_source_map['LinuxMint'] = 'DEB'
sw_source_map['Ubuntu'] = 'DEB'
sw_source_map['Raspbian GNU/Linux'] = 'DEB'
sw_source_map['CentOS Linux'] = 'RPM'
sw_source_map['CentOS'] = 'RPM'
switch (sw_source_map[process['CONFIG']['LOCAL']['OS']['DISTRO']]) {
case 'DEB':
console.log(" sudo apt install dmidcode")
break;
case 'RPM':
console.log(" sudo yum install dmidcode")
break;
default:
console.log("WARNING: Unknown DISTRO: " + process['CONFIG']['LOCAL']['OS']['DISTRO'])
}
console.log("\n#################################################################################")
}
}
// console.log (" Script: " + process.argv)
console.log ("Collecting Data: This may take serveral minutes .....")
console.log ("")
// console.log(JSON.stringify(am_data['SOURCE']['DMIDECODE'], null, 2))
// console.log (" User: " + JSON.stringify(os.userInfo(), null, 2))
// console.log (" Home: " + os.homedir())
@ -103,8 +167,6 @@ console.log ("")
// am_data['DATA_EVENT'] = {}
// am_data['DATA_EVENT']['TIMESTAMP'] = ts['UTC']['ISO8601']
am_data['SOURCE'] = {}
am_data['SOURCE']['NODEJS'] = {}
am_data['SOURCE']['NODEJS']['HOST'] = {}
am_data['SOURCE']['NODEJS']['HOST']['HOSTNAME'] = process['CONFIG']['LOCAL']['HOST']['HOSTNAME']
am_data['SOURCE']['NODEJS']['HOST']['IP_ADDR'] = []
@ -319,6 +381,13 @@ console.log ("\nRuntime: " + Math.round(am_data['ITAM']['ELAPSED_SEC']) + ' seco
iatm_upload_data(am_data)
try {
fs.writeFileSync(path.join(am_data['ITAM']['APP_DIR'], 'skqitam-data.json'), JSON.stringify(am_data, null, 2), 'utf8')
console.log ('Local Copy Saved: ' + path.join(am_data['ITAM']['APP_DIR'], 'skqitam-data.json'))
} catch (e) {
console.log("ERROR: Could not save local copy: " + path.join(am_data['ITAM']['APP_DIR'], 'skqitam-data.json'));
}
// ------------ Functions Libraries --------------------//
@ -707,7 +776,7 @@ function it_am_init() {
for (ip in config['HOST']['NETWORK']['IP_ADDR']['IPv4']) {
try {
let cmd_host_lookup = 'host ' + config['HOST']['NETWORK']['IP_ADDR']['IPv4'][ip]
console.log ('DEBUG HOST: ' + cmd_host_lookup )
// console.log ('DEBUG HOST: ' + cmd_host_lookup )
let host_regx = RegExp(/domain name pointer\s+(\S+)\.\S+$/)
let host_lines = String(childProcess.execSync(cmd_host_lookup, { encoding: 'utf8' })).split(/\n/)
if (hmch = host_lines[0].match(host_regx)) {

4
skqitam-client/package.json

@ -1,7 +1,7 @@
{
"name": "skqitam-client",
"version": "0.0.5",
"version_date": "2021-06-17",
"version": "0.0.6",
"version_date": "2021-06-21",
"description": "Sikuliaq IT Asset Manager Client Data Collector",
"copyright": "University of Alaska Fairbanks - College of Fisheries and Ocean Science - R/V Sikuliaq",
"main": "skqitam-client.js",

8
skqitam-client/skqitam-dmidecode2txt.sh

@ -0,0 +1,8 @@
#!/usr/bin/env bash
for k in `echo "bios-vendor, bios-version, bios-release-date, system-manufacturer, system-product-name, system-version, system-serial-number, system-uuid, system-family, baseboard-manufacturer, baseboard-product-name, baseboard-version, baseboard-serial-number, baseboard-asset-tag, chassis-manufacturer, chassis-type, chassis-version, chassis-serial-number, chassis-asset-tag, processor-family, processor-manufacturer, processor-version, processor-frequency"|sed -e's/,//g'`; do
echo -n $k': '
dmidecode -s $k
done > $1
echo "DMIDECODE output written to: $1"

1
web/root/docs/versions.md

@ -1,5 +1,6 @@
## Change Log
- 0.0.6 2021-06-21 - Adding Win7 Client and dmidecode support
- 0.0.5 2021-06-17 - Beta Release - Testing on Sikuliaq
- 0.0.4_2021-06-15 - Development Release - Data Logger
- 0.0.3_2021-06-10 - Development Release - Win/Mac/Linux Clients Baseline

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 (Beta)
version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/search/search_index.json
File diff suppressed because it is too large
View File

8
web/root/site/sitemap.xml

@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url>
<loc>None</loc>
<lastmod>2021-06-18</lastmod>
<lastmod>2021-06-21</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-06-18</lastmod>
<lastmod>2021-06-21</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-06-18</lastmod>
<lastmod>2021-06-21</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-06-18</lastmod>
<lastmod>2021-06-21</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>

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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

3
web/root/site/versions.html

@ -126,6 +126,7 @@
<h2 id="change-log">Change Log</h2>
<ul>
<li>0.0.6 2021-06-21 - Adding Win7 Client and dmidecode support</li>
<li>0.0.5 2021-06-17 - Beta Release - Testing on Sikuliaq</li>
<li>0.0.4_2021-06-15 - Development Release - Data Logger</li>
<li>0.0.3_2021-06-10 - Development Release - Win/Mac/Linux Clients Baseline</li>
@ -148,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 (Beta)</p>
<p class="small">Version: 0.0.6 2021-06-21 (Beta)</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

Loading…
Cancel
Save