=== modified file 'debian/control' --- debian/control 2011-12-21 00:29:33 +0000 +++ debian/control 2011-12-21 17:09:12 +0000 @@ -38,7 +38,7 @@ Package: mandos-client Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, cryptsetup, - gnupg (<< 2) + gnupg (<< 2), initramfs-tools Breaks: dropbear (<= 0.53.1-1) Enhances: cryptsetup Description: do unattended reboots with an encrypted root file system === modified file 'mandos' --- mandos 2011-12-21 16:33:08 +0000 +++ mandos 2011-12-21 17:16:00 +0000 @@ -2218,6 +2218,9 @@ .format(e)) if e.errno != errno.ENOENT: raise + except EOFError as e: + logger.warning("Could not load persistent state: " + "EOFError: {0}".format(e)) with PGPEngine() as pgp: for client_name, client in clients_data.iteritems(): === modified file 'mandos-ctl' --- mandos-ctl 2011-12-21 00:29:33 +0000 +++ mandos-ctl 2011-12-21 17:17:32 +0000 @@ -236,7 +236,7 @@ #restore stderr os.dup2(stderrcopy, sys.stderr.fileno()) os.close(stderrcopy) - except dbus.exceptions.DBusException, e: + except dbus.exceptions.DBusException: print("Access denied: Accessing mandos server through dbus.", file=sys.stderr) sys.exit(1)