This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<body> | |
<H1>SERVER - <% | |
Set objWSHNetwork = Server.CreateObject("WScript.Network") | |
Response.Write objWSHNetwork.ComputerName | |
%></H1> | |
<br> | |
<p> | |
<b>HTTPS:</b> | |
<%Response.Write(Request.ServerVariables("HTTPS"))%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Define storage variable | |
STORAGE=nas | |
# Install necessary tools | |
echo "Checking tools" | |
apt update -y && apt install nano wget curl libguestfs-tools -y | |
# Remove old image |