update comment

This commit is contained in:
Denis
2022-01-11 13:39:45 +01:00
parent 44bc98a453
commit 6bda5c6329
3 changed files with 2 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ console.info("Version: " + checkVersion.version);
// Dual-stack support for (::)
let hostname = process.env.UPTIME_KUMA_HOST || args.host;
// Also read HOST if not FreeBSD, as HOST is a system environment variable in FreeBSD
// Also read HOST if not *BSD, as HOST is a system environment variable in FreeBSD
if (!hostname && !FBSD) {
hostname = process.env.HOST;
}

View File

@@ -15,7 +15,6 @@ const nodeJsUtil = require("util");
exports.WIN = /^win/.test(process.platform);
exports.LIN = /^linux/.test(process.platform);
exports.MAC = /^darwin/.test(process.platform);
exports.FBSD = /^freebsd/.test(process.platform);
exports.BSD = /bsd$/.test(process.platform);
/**