source: vendor/3.6.0/source3/rpcclient/cmd_shutdown.c

Last change on this file was 414, checked in by Herwig Bauernfeind, 15 years ago

Samba 3.5.0: Initial import

File size: 3.3 KB
Line 
1/*
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.
8
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.
13
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.
18
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/>.
21*/
22
23#include "includes.h"
24#include "rpcclient.h"
25
26#if 0 /* don't uncomment this unless you remove the getopt() calls */
27 /* use net rpc shutdown instead */
28
29/****************************************************************************
30nt shutdown init
31****************************************************************************/
32static NTSTATUS cmd_shutdown_init(struct cli_state *cli, TALLOC_CTX *mem_ctx,
33 int argc, const char **argv)
34{
35 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
36 fstring msg;
37 uint32 timeout = 20;
38 bool force = False;
39 bool reboot = False;
40 int opt;
41
42 *msg = 0;
43 optind = 0; /* TODO: test if this hack works on other systems too --simo */
44
45 while ((opt = getopt(argc, argv, "m:t:rf")) != EOF)
46 {
47 /*fprintf (stderr, "[%s]\n", argv[argc-1]);*/
48
49 switch (opt)
50 {
51 case 'm':
52 fstrcpy(msg, optarg);
53 /*fprintf (stderr, "[%s|%s]\n", optarg, msg);*/
54 break;
55
56 case 't':
57 timeout = atoi(optarg);
58 /*fprintf (stderr, "[%s|%d]\n", optarg, timeout);*/
59 break;
60
61 case 'r':
62 reboot = True;
63 break;
64
65 case 'f':
66 force = True;
67 break;
68
69 }
70 }
71
72 /* create an entry */
73 result = cli_shutdown_init(cli, mem_ctx, msg, timeout, reboot, force);
74
75 if (NT_STATUS_IS_OK(result))
76 DEBUG(5,("cmd_shutdown_init: query succeeded\n"));
77 else
78 DEBUG(5,("cmd_shutdown_init: query failed\n"));
79
80 return result;
81}
82
83/****************************************************************************
84abort a shutdown
85****************************************************************************/
86static NTSTATUS cmd_shutdown_abort(struct cli_state *cli,
87 TALLOC_CTX *mem_ctx, int argc,
88 const char **argv)
89{
90 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
91
92 result = cli_shutdown_abort(cli, mem_ctx);
93
94 if (NT_STATUS_IS_OK(result))
95 DEBUG(5,("cmd_shutdown_abort: query succeeded\n"));
96 else
97 DEBUG(5,("cmd_shutdown_abort: query failed\n"));
98
99 return result;
100}
101#endif
102
103
104/* List of commands exported by this module */
105struct cmd_set shutdown_commands[] = {
106
107 { "SHUTDOWN" },
108
109#if 0
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)" },
112
113 { "shutdownabort", RPC_RTYPE_NTSTATUS, cmd_shutdown_abort, NULL, &ndr_table_initshutdown.syntax_id, "Abort Shutdown (over shutdown pipe)",
114 "syntax: shutdownabort" },
115#endif
116 { NULL }
117};
Note: See TracBrowser for help on using the repository browser.