Changeset

413:4b61529d0884

Refuse to run without SSL/TLS unless run_without_ssl is set in config
author Matthew Wild <mwild1@gmail.com>
date Tue, 25 Nov 2008 03:52:53 +0000
parents 412:b5b4ec28feec
children 414:405d414fbce2
files util/dependencies.lua
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/util/dependencies.lua	Tue Nov 25 03:50:08 2008 +0000
+++ b/util/dependencies.lua	Tue Nov 25 03:52:53 2008 +0000
@@ -35,7 +35,11 @@
 local ssl = softreq "ssl"
 
 if not ssl then
-	missingdep("LuaSec", { ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/" }, "SSL/TLS support will not be available");
+	if config.get("*", "core", "run_without_ssl") then
+		log("warn", "Running without SSL support because run_without_ssl is defined in the config");
+	else
+		missingdep("LuaSec", { ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/" }, "SSL/TLS support will not be available");
+	end
 end