1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-31 12:23:52 +03:00

r8648: automatically redirect to provisioning if not yet provisioned when the

home page in swat is accessed
This commit is contained in:
Andrew Tridgell
2005-07-20 11:26:17 +00:00
committed by Gerald (Jerry) Carter
parent 08eb97c264
commit 78fb559c08
2 changed files with 27 additions and 0 deletions

View File

@@ -9,6 +9,27 @@ provision_next_usn = 1;
sys = sys_init();
/*
return true if the current install seems to be OK
*/
function install_ok()
{
var lp = loadparm_init();
var ldb = ldb_init();
if (lp.get("realm") == "") {
return false;
}
var ok = ldb.connect(lp.get("sam database"));
if (!ok) {
return false;
}
var res = ldb.search("(name=Administrator)");
if (res.length != 1) {
return false;
}
return true;
}
/*
find a user or group from a list of possibilities
*/