use strict

This commit is contained in:
Devaev Maxim
2019-07-17 04:17:22 +03:00
parent 9737b926b8
commit ad83678eb3
14 changed files with 67 additions and 25 deletions

View File

@@ -20,12 +20,15 @@
*****************************************************************************/
"use strict";
import {$} from "../tools.js";
export function main() {
let host = window.location.hostname;
let site = window.location.protocol + "//" + window.location.host;
let site = `${window.location.protocol}//${window.location.host}`;
$("ipmi-text").innerHTML = `
<span class="code-comment"># Power on the server if it's off:<br>
$</span> ipmitool -I lanplus -U admin -P admin -H ${host} power on<br>