/mandos/release

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

« back to all changes in this revision

Viewing changes to mandos

  • Committer: Teddy Hogeborn
  • Date: 2016-03-23 07:11:22 UTC
  • mto: (237.7.594 trunk)
  • mto: This revision was merged to the branch mainline in revision 343.
  • Revision ID: teddy@recompile.se-20160323071122-55srtjdizr21rr7f
Use HTTPS in home page links

Since we have a real certificate now, change all links to the home
page to use HTTPS.

* README: Use HTTPS in home page links
* debian/control (Source: mandos/Homepage): - '' -
* debian/copyright (Source): - '' -
* intro.xml (SEE ALSO): - '' -
* mandos.lsm (Primary-site): - '' -

Show diffs side-by-side

added added

removed removed

Lines of Context:
180
180
        self.gnupgargs = ['--batch',
181
181
                          '--homedir', self.tempdir,
182
182
                          '--force-mdc',
183
 
                          '--quiet']
184
 
        # Only GPG version 1 has the --no-use-agent option.
185
 
        if self.gpg == "gpg" or self.gpg.endswith("/gpg"):
186
 
            self.gnupgargs.append("--no-use-agent")
 
183
                          '--quiet',
 
184
                          '--no-use-agent']
187
185
    
188
186
    def __enter__(self):
189
187
        return self
2174
2172
            priority = self.server.gnutls_priority
2175
2173
            if priority is None:
2176
2174
                priority = "NORMAL"
2177
 
            gnutls.priority_set_direct(session._c_object,
2178
 
                                       priority.encode("utf-8"),
 
2175
            gnutls.priority_set_direct(session._c_object, priority,
2179
2176
                                       None)
2180
2177
            
2181
2178
            # Start communication using the Mandos protocol
3310
3307
        
3311
3308
        mandos_dbus_service = MandosDBusService()
3312
3309
    
3313
 
    # Save modules to variables to exempt the modules from being
3314
 
    # unloaded before the function registered with atexit() is run.
3315
 
    mp = multiprocessing
3316
 
    wn = wnull
3317
3310
    def cleanup():
3318
3311
        "Cleanup function; run on exit"
3319
3312
        if zeroconf:
3320
3313
            service.cleanup()
3321
3314
        
3322
 
        mp.active_children()
3323
 
        wn.close()
 
3315
        multiprocessing.active_children()
 
3316
        wnull.close()
3324
3317
        if not (tcp_server.clients or client_settings):
3325
3318
            return
3326
3319