mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-10-31 19:39:20 +08:00 
			
		
		
		
	ping path is common to all BSDs
This commit is contained in:
		| @@ -48,7 +48,7 @@ function Ping(host, options) { | ||||
|         this._args = (options.args) ? options.args : [ "-n", "-t", timeout, "-c", "1", host ]; | ||||
|         this._regmatch = /=([0-9.]+?) ms/; | ||||
|  | ||||
|     } else if (util.FBSD) { | ||||
|     } else if (util.BSD) { | ||||
|         this._bin = "/sbin/ping"; | ||||
|  | ||||
|         const defaultArgs = [ "-n", "-t", timeout, "-c", "1", host ]; | ||||
|   | ||||
| @@ -15,7 +15,7 @@ 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); | ||||
|  | ||||
| /** | ||||
|  * Init or reset JWT secret | ||||
|   | ||||
		Reference in New Issue
	
	Block a user