/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

Change "fukt.bsnet.se" to "recompile.se" throughout.

* README: - '' -
* debian/control: - '' -
* debian/copyright: - '' -
* debian/mandos-client.README.Debian: - '' - and some rewriting.
* debian/mandos.README.Debian: - '' -
* debian/watch: Change "fukt.bsnet.se" to "recompile.se".
* init.d-mandos: - '' -
* intro.xml: - '' -
* mandos: - '' -
* mandos-clients.conf.xml: - '' -
* mandos-ctl: - '' -
* mandos-ctl.xml: - '' -
* mandos-keygen: - '' -
* mandos-keygen.xml: - '' -
* mandos-monitor: - '' -
* mandos-monitor.xml: - '' -
* mandos.conf.xml: - '' -
* mandos.lsm: - '' -
* mandos.xml: - '' -
* plugin-runner.c: - '' -
* plugin-runner.xml: - '' -
* plugins.d/askpass-fifo.c: - '' -
* plugins.d/askpass-fifo.xml: - '' -
* plugins.d/mandos-client.c: - '' -
* plugins.d/mandos-client.xml: - '' -
* plugins.d/password-prompt.c: - '' -
* plugins.d/password-prompt.xml: - '' -
* plugins.d/plymouth.c: - '' -
* plugins.d/plymouth.xml: - '' -
* plugins.d/splashy.c: - '' -
* plugins.d/splashy.xml: - '' -
* plugins.d/usplash.c: - '' -
* plugins.d/usplash.xml: - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
4
4
# Mandos Monitor - Control and monitor the Mandos server
5
5
6
 
# Copyright © 2008-2011 Teddy Hogeborn
7
 
# Copyright © 2008-2011 Björn Påhlsson
 
6
# Copyright © 2008-2010 Teddy Hogeborn
 
7
# Copyright © 2008-2010 Björn Påhlsson
8
8
9
9
# This program is free software: you can redistribute it and/or modify
10
10
# it under the terms of the GNU General Public License as published by
60
60
server_path = "/"
61
61
server_interface = domain + ".Mandos"
62
62
client_interface = domain + ".Mandos.Client"
63
 
version = "1.4.1"
 
63
version = "1.3.1"
64
64
 
65
65
def timedelta_to_milliseconds(td):
66
66
    """Convert a datetime.timedelta object to milliseconds"""
301
301
                                         dbus_interface=
302
302
                                         dbus.PROPERTIES_IFACE)
303
303
                         else 1)
304
 
            if options.checker is not None:
 
304
            if options.checker:
305
305
                client.Set(client_interface, "Checker",
306
306
                           options.checker,
307
307
                           dbus_interface=dbus.PROPERTIES_IFACE)
308
 
            if options.host is not None:
 
308
            if options.host:
309
309
                client.Set(client_interface, "Host", options.host,
310
310
                           dbus_interface=dbus.PROPERTIES_IFACE)
311
 
            if options.interval is not None:
 
311
            if options.interval:
312
312
                client.Set(client_interface, "Interval",
313
313
                           timedelta_to_milliseconds
314
314
                           (string_to_delta(options.interval)),
315
315
                           dbus_interface=dbus.PROPERTIES_IFACE)
316
 
            if options.approval_delay is not None:
 
316
            if options.approval_delay:
317
317
                client.Set(client_interface, "ApprovalDelay",
318
318
                           timedelta_to_milliseconds
319
319
                           (string_to_delta(options.
320
320
                                            approval_delay)),
321
321
                           dbus_interface=dbus.PROPERTIES_IFACE)
322
 
            if options.approval_duration is not None:
 
322
            if options.approval_duration:
323
323
                client.Set(client_interface, "ApprovalDuration",
324
324
                           timedelta_to_milliseconds
325
325
                           (string_to_delta(options.
326
326
                                            approval_duration)),
327
327
                           dbus_interface=dbus.PROPERTIES_IFACE)
328
 
            if options.timeout is not None:
 
328
            if options.timeout:
329
329
                client.Set(client_interface, "Timeout",
330
330
                           timedelta_to_milliseconds
331
331
                           (string_to_delta(options.timeout)),
332
332
                           dbus_interface=dbus.PROPERTIES_IFACE)
333
 
            if options.extended_timeout is not None:
 
333
            if options.extended_timeout:
334
334
                client.Set(client_interface, "ExtendedTimeout",
335
335
                           timedelta_to_milliseconds
336
336
                           (string_to_delta(options.extended_timeout)),
337
337
                           dbus_interface=dbus.PROPERTIES_IFACE)
338
 
            if options.secret is not None:
 
338
            if options.secret:
339
339
                client.Set(client_interface, "Secret",
340
340
                           dbus.ByteArray(open(options.secret,
341
341
                                               "rb").read()),