s4:net utility - make outprinted description comments more consistent
[metze/samba/wip.git] / source4 / scripting / python / samba / netcmd / time.py
1 #!/usr/bin/python
2 #
3 # time
4 #
5 # Copyright Jelmer Vernooij 2010 <jelmer@samba.org>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20
21 import samba.getopt as options
22
23 from samba.net import Net
24
25 from samba.netcmd import (
26     Command,
27     )
28
29 class cmd_time(Command):
30     """Retrieve the time on a remote server [server connection needed]"""
31     synopsis = "%prog time <server-name>"
32
33     takes_optiongroups = {
34         "sambaopts": options.SambaOptions,
35         "credopts": options.CredentialsOptions,
36         "versionopts": options.VersionOptions,
37         }
38
39     takes_args = ["server_name"]
40
41     def run(self, server_name, credopts=None, sambaopts=None, versionopts=None):
42         lp = sambaopts.get_loadparm()
43         creds = credopts.get_credentials(lp)
44         net = Net(creds, lp)
45         print net.time(server_name)