1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

r15123: Don't even try to join with an inproper configuration.

Guenther
This commit is contained in:
Günther Deschner 2006-04-18 13:22:14 +00:00 committed by Gerald (Jerry) Carter
parent 6c65cccc83
commit 22b6875897
2 changed files with 13 additions and 0 deletions

View File

@ -721,6 +721,13 @@ int net_ads_join(int argc, const char **argv)
const char *short_domain_name = NULL;
TALLOC_CTX *ctx = NULL;
if ((lp_server_role() != ROLE_DOMAIN_MEMBER) ||
(lp_server_role() != ROLE_DOMAIN_BDC)) {
d_printf("can only join as domain member or as BDC\n");
return -1;
}
if (argc > 0) {
org_unit = argv[0];
}

View File

@ -389,6 +389,12 @@ static int rpc_join_usage(int argc, const char **argv)
int net_rpc_join(int argc, const char **argv)
{
if ((lp_server_role() != ROLE_DOMAIN_MEMBER) ||
(lp_server_role() != ROLE_DOMAIN_BDC)) {
d_printf("can only join as domain member or as BDC\n");
return -1;
}
if ((net_rpc_perform_oldjoin(argc, argv) == 0))
return 0;