/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 debian/control

  • Committer: Teddy Hogeborn
  • Date: 2008-07-21 15:34:44 UTC
  • Revision ID: teddy@fukt.bsnet.se-20080721153444-lugbjkj1oq65ugq3
* Makefile (CFLAGS): Changed to use $(WARN), $(DEBUG), $(COVERAGE) and
                     $(LANGUAGE).
  (WARN, DEBUG, COVERAGE, LANGUAGE): New.
  (LDFLAGS): New; use $(COVERAGE)

* plugbasedclient.c: Added copyright header.
  (process.buffer_size, process.buffer_length): Changed to "size_t".
  (main): Cast arguments to malloc and realloc.  Detect read errors
          from processes.

* mandosclient.c: Added copyright header.
  (interface): Moved to inside "main".
  (gpg_packet_decrypt): Renamed to "pgp_packet_decrypt"; all callers
                        changed.  Changed "new_packet_capacity" and
                        "new_packet_length" to be ssize_t.  Cast
                        arguments to realloc.
  (debuggnutls): Attribute "level" argument as unused.
  (empty_log): Attribute "level" and "txt" arguments as unused.
  (start_mandos_communication): New argument "if_index".  Bug fix:
                                check ret, no tcp_sd, for errors from
                                setsockopt.  Use "if_index" directly
                                instead of looking up the index.  Loop
                                around fwrite until all data is written.
  (resolve_callback): Attribute "txt", and "flags" as usused.  Added
                      default case to switch.  Also show server host
                      name.  Call start_mandos_communication with
                      "interface".
  (browse_callback): Added default case to switch.
  (main): Variable "interface" moved here.  Cast "srand" argument.
          Bug fix: Call avahi_s_service_browser_new with index of
          "interface", not "eth0".

* passprompt.c: Added copyright header.
  (termination_handler): Attribute "signum" argument as unused.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Source: mandos
2
 
Section: admin
3
 
Priority: extra
4
 
Maintainer: Mandos Maintainers <mandos@recompile.se>
5
 
Uploaders: Teddy Hogeborn <teddy@recompile.se>,
6
 
           Björn Påhlsson <belorn@recompile.se>
7
 
Build-Depends: debhelper (>= 9), docbook-xml, docbook-xsl,
8
 
        libavahi-core-dev, libgpgme11-dev, libgnutls28-dev (>= 3.3.0)
9
 
        | gnutls-dev (>= 3.3.0), xsltproc, pkg-config,
10
 
        libnl-route-3-dev
11
 
Build-Depends-Indep: systemd, python (>= 2.7), python (<< 3),
12
 
        python-dbus, python-gi
13
 
Standards-Version: 3.9.8
14
 
Vcs-Bzr: http://ftp.recompile.se/pub/mandos/trunk
15
 
Vcs-Browser: http://bzr.recompile.se/loggerhead/mandos/trunk/files
16
 
Homepage: https://www.recompile.se/mandos
17
 
 
18
 
Package: mandos
19
 
Architecture: all
20
 
Depends: ${misc:Depends}, python (>= 2.7), python (<< 3),
21
 
        libgnutls28-dev (>= 3.3.0) | libgnutls30 (>= 3.3.0),
22
 
        python-dbus, python-gi, avahi-daemon, adduser, python-urwid,
23
 
        gnupg
24
 
Recommends: ssh-client | fping
25
 
Description: server giving encrypted passwords to Mandos clients
26
 
 This is the server part of the Mandos system, which allows
27
 
 computers to have encrypted root file systems and at the
28
 
 same time be capable of remote and/or unattended reboots.
29
 
 .
30
 
 The computers run a small client program in the initial RAM
31
 
 disk environment which will communicate with a server over a
32
 
 network.  All network communication is encrypted using TLS.
33
 
 The clients are identified by the server using an OpenPGP
34
 
 key; each client has one unique to it.  The server sends the
35
 
 clients an encrypted password.  The encrypted password is
36
 
 decrypted by the clients using the same OpenPGP key, and the
37
 
 password is then used to unlock the root file system,
38
 
 whereupon the computers can continue booting normally.
39
 
 
40
 
Package: mandos-client
41
 
Architecture: linux-any
42
 
Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, cryptsetup,
43
 
        initramfs-tools, dpkg-dev (>=1.16.0)
44
 
Recommends: ssh, gnutls-bin | openssl
45
 
Breaks: dropbear (<= 0.53.1-1)
46
 
Enhances: cryptsetup
47
 
Description: do unattended reboots with an encrypted root file system
48
 
 This is the client part of the Mandos system, which allows
49
 
 computers to have encrypted root file systems and at the
50
 
 same time be capable of remote and/or unattended reboots.
51
 
 .
52
 
 The computers run a small client program in the initial RAM
53
 
 disk environment which will communicate with a server over a
54
 
 network.  All network communication is encrypted using TLS.
55
 
 The clients are identified by the server using an OpenPGP
56
 
 key; each client has one unique to it.  The server sends the
57
 
 clients an encrypted password.  The encrypted password is
58
 
 decrypted by the clients using the same OpenPGP key, and the
59
 
 password is then used to unlock the root file system,
60
 
 whereupon the computers can continue booting normally.