/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-ctl

  • Committer: Teddy Hogeborn
  • Date: 2010-09-25 23:52:17 UTC
  • Revision ID: teddy@fukt.bsnet.se-20100925235217-4hhqfryz1ste6uw3
* mandos (ClientDBus.__init__): Bug fix: Translate "-" in client names
                                to "_" in D-Bus object paths.
  (MandosServer.handle_ipc): Bug fix: Send only address string to
                             D-Bus signal, not whole tuple.

* mandos-ctl: New options "--approve-by-default", "--deny-by-default",
              "--approval-delay", and "--approval-duration".
* mandos-ctl.xml (SYNOPSIS, OPTIONS): Document new options.

* mandos-monitor (MandosClientWidget.update): Fix spelling.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/python
2
2
# -*- mode: python; coding: utf-8 -*-
3
 
4
 
# Mandos Monitor - Control and monitor the Mandos server
5
 
6
 
# Copyright © 2008-2010 Teddy Hogeborn
7
 
# Copyright © 2008-2010 Björn Påhlsson
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
 
# Contact the authors at <mandos@fukt.bsnet.se>.
23
 
24
3
 
25
4
from __future__ import division
26
5
import sys
38
17
    'Enabled': u'Enabled',
39
18
    'Timeout': u'Timeout',
40
19
    'LastCheckedOK': u'Last Successful Check',
41
 
    'LastApprovalRequest': u'Last Approval Request',
42
20
    'Created': u'Created',
43
21
    'Interval': u'Interval',
44
22
    'Host': u'Host',
57
35
server_path = '/'
58
36
server_interface = domain + '.Mandos'
59
37
client_interface = domain + '.Mandos.Client'
60
 
version = "1.2"
 
38
version = "1.0.14"
61
39
 
62
40
def timedelta_to_milliseconds(td):
63
41
    "Convert a datetime.timedelta object to milliseconds"
261
239
                            'LastCheckedOK', 'Created', 'Interval',
262
240
                            'Host', 'Fingerprint', 'CheckerRunning',
263
241
                            'LastEnabled', 'ApprovalPending',
264
 
                            'ApprovedByDefault',
265
 
                            'LastApprovalRequest', 'ApprovalDelay',
 
242
                            'ApprovedByDefault', 'ApprovalDelay',
266
243
                            'ApprovalDuration', 'Checker')
267
244
            else:
268
245
                keywords = defaultkeywords
269
 
            
 
246
                
270
247
            print_clients(clients.values(), keywords)
271
248
        else:
272
249
            # Process each client in the list by all selected options