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 2 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, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include "rpcclient.h"
27 #if 0 /* don't uncomment this unless you remove the getopt() calls */
28 /* use net rpc shutdown instead */
30 /****************************************************************************
32 ****************************************************************************/
33 static NTSTATUS
cmd_shutdown_init(struct cli_state
*cli
, TALLOC_CTX
*mem_ctx
,
34 int argc
, const char **argv
)
36 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
44 optind
= 0; /* TODO: test if this hack works on other systems too --simo */
46 while ((opt
= getopt(argc
, argv
, "m:t:rf")) != EOF
)
48 /*fprintf (stderr, "[%s]\n", argv[argc-1]);*/
54 /*fprintf (stderr, "[%s|%s]\n", optarg, msg);*/
58 timeout
= atoi(optarg
);
59 /*fprintf (stderr, "[%s|%d]\n", optarg, timeout);*/
74 result
= cli_shutdown_init(cli
, mem_ctx
, msg
, timeout
, reboot
, force
);
76 if (NT_STATUS_IS_OK(result
))
77 DEBUG(5,("cmd_shutdown_init: query succeeded\n"));
79 DEBUG(5,("cmd_shutdown_init: query failed\n"));
84 /****************************************************************************
86 ****************************************************************************/
87 static NTSTATUS
cmd_shutdown_abort(struct cli_state
*cli
,
88 TALLOC_CTX
*mem_ctx
, int argc
,
91 NTSTATUS result
= NT_STATUS_UNSUCCESSFUL
;
93 result
= cli_shutdown_abort(cli
, mem_ctx
);
95 if (NT_STATUS_IS_OK(result
))
96 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
98 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
105 /* List of commands exported by this module */
106 struct cmd_set shutdown_commands
[] = {
111 { "shutdowninit", RPC_RTYPE_NTSTATUS
, cmd_shutdown_init
, NULL
, PI_SHUTDOWN
, "Remote Shutdown (over shutdown pipe)",
112 "syntax: shutdown [-m message] [-t timeout] [-r] [-h] [-f] (-r == reboot, -h == halt, -f == force)" },
114 { "shutdownabort", RPC_RTYPE_NTSTATUS
, cmd_shutdown_abort
, NULL
, PI_SHUTDOWN
, "Abort Shutdown (over shutdown pipe)",
115 "syntax: shutdownabort" },