2 Unix SMB/CIFS implementation.
3 NT Domain Authentication SMB / MSRPC client
4 Copyright (C) Andrew Tridgell 1994-1997,
5 Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
6 Copyright (C) Simo Sorce 2001,
7 Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2003.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "rpcclient.h"
26 #if 0 /* don't uncomment this unless you remove the getopt() calls */
27 /* use net rpc shutdown instead */
29 /****************************************************************************
31 ****************************************************************************/
32 static NTSTATUS
cmd_shutdown_init(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
33 int argc
, const char **argv
)
35 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
43 optind
= 0; /* TODO: test if this hack works on other systems too --simo */
45 while ((opt
= getopt(argc
, argv
, "m:t:rf")) != EOF
)
47 /*fprintf (stderr, "[%s]\n", argv[argc-1]);*/
53 /*fprintf (stderr, "[%s|%s]\n", optarg, msg);*/
57 timeout
= atoi(optarg
);
58 /*fprintf (stderr, "[%s|%d]\n", optarg, timeout);*/
73 result
= cli_shutdown_init(cli
, mem_ctx
, msg
, timeout
, reboot
, force
);
75 if (NT_STATUS_IS_OK(result
))
76 DEBUG(5,("cmd_shutdown_init: query succeeded\n"));
78 DEBUG(5,("cmd_shutdown_init: query failed\n"));
83 /****************************************************************************
85 ****************************************************************************/
86 static NTSTATUS
cmd_shutdown_abort(struct cli_state
*cli
,
87 TALLOC_CTX
*mem_ctx
, int argc
,
90 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
92 result
= cli_shutdown_abort(cli
, mem_ctx
);
94 if (NT_STATUS_IS_OK(result
))
95 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
97 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
104 /* List of commands exported by this module */
105 struct cmd_set shutdown_commands
[] = {
110 { "shutdowninit", RPC_RTYPE_NTSTATUS
, cmd_shutdown_init
, NULL
, &ndr_table_initshutdown
.syntax_id
, "Remote Shutdown (over shutdown pipe)",
111 "syntax: shutdown [-m message] [-t timeout] [-r] [-h] [-f] (-r == reboot, -h == halt, -f == force)" },
113 { "shutdownabort", RPC_RTYPE_NTSTATUS
, cmd_shutdown_abort
, NULL
, &ndr_table_initshutdown
.syntax_id
, "Abort Shutdown (over shutdown pipe)",
114 "syntax: shutdownabort" },