add sanity check for no auth modules being enabled in PLUGINS
This commit is contained in:
parent
c5bb0440d3
commit
72679db8c7
|
@ -12,6 +12,10 @@
|
||||||
|
|
||||||
require_once "sanity_config.php";
|
require_once "sanity_config.php";
|
||||||
|
|
||||||
|
if (strpos(PLUGINS, "auth_") === FALSE) {
|
||||||
|
array_push($errors, "Please enable at least one authentication module via PLUGINS constant in config.php");
|
||||||
|
}
|
||||||
|
|
||||||
if (function_exists('posix_getuid') && posix_getuid() == 0) {
|
if (function_exists('posix_getuid') && posix_getuid() == 0) {
|
||||||
array_push($errors, "Please don't run this script as root.");
|
array_push($errors, "Please don't run this script as root.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue