/*
Samba Unix/Linux SMB client library
net dom commands for remote join/unjoin
Copyright (C) 2007 Günther Deschner
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
#include "includes.h"
#include "utils/net.h"
#include "lib/netapi/netapi.h"
static int net_dom_usage(int argc, const char **argv)
{
d_printf("usage: net dom join "
" \n");
d_printf("usage: net dom unjoin "
" \n");
return -1;
}
int net_help_dom(int argc, const char **argv)
{
d_printf("net dom join"\
"\n Join a remote machine\n");
d_printf("net dom unjoin"\
"\n Unjoin a remote machine\n");
return -1;
}
static int net_dom_unjoin(int argc, const char **argv)
{
struct libnetapi_ctx *ctx = NULL;
const char *server_name = NULL;
const char *account = NULL;
const char *password = NULL;
uint32_t unjoin_flags = WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE |
WKSSVC_JOIN_FLAGS_JOIN_TYPE;
struct cli_state *cli = NULL;
bool reboot = false;
NTSTATUS ntstatus;
NET_API_STATUS status;
int ret = -1;
int i;
if (argc < 1) {
return net_dom_usage(argc, argv);
}
if (opt_host) {
server_name = opt_host;
}
for (i=0; i