Commit 446b34a4 authored by Julien Muchembled's avatar Julien Muchembled

Fixes for Debian Stable

parent c9e33166
...@@ -67,3 +67,5 @@ re6stnet is distributed as an Python egg, and is also packaged for Debian. ...@@ -67,3 +67,5 @@ re6stnet is distributed as an Python egg, and is also packaged for Debian.
See `re6stnet-registry` to set up a re6st network See `re6stnet-registry` to set up a re6st network
and `re6stnet-conf` to join an existing network. and `re6stnet-conf` to join an existing network.
On Debian Squeeze, you will have to install `babeld` package from Wheezy.
...@@ -7,6 +7,6 @@ Standards-Version: 3.9.1 ...@@ -7,6 +7,6 @@ Standards-Version: 3.9.1
Package: re6stnet Package: re6stnet
Architecture: all Architecture: all
Depends: ${misc:Depends}, python (>= 2.6.6-3), python (<< 2.8), python-openssl, openvpn, babeld, iproute, openssl Depends: ${misc:Depends}, python (>= 2.6.6-3), python (<< 2.8), python-openssl, openvpn (>= 2.1.3), babeld (>= 1.3.1), iproute, openssl
Recommends: ${python:Recommends} Recommends: ${python:Recommends}
Description: resilient, scalable, IPv6 network application Description: resilient, scalable, IPv6 network application
...@@ -210,7 +210,7 @@ class main(object): ...@@ -210,7 +210,7 @@ class main(object):
# Create certificate # Create certificate
cert = crypto.X509() cert = crypto.X509()
#cert.set_serial_number(serial) cert.set_serial_number(0) # required for libssl < 1.0
cert.gmtime_adj_notBefore(0) cert.gmtime_adj_notBefore(0)
cert.gmtime_adj_notAfter(self.cert_duration) cert.gmtime_adj_notAfter(self.cert_duration)
cert.set_issuer(self.ca.get_subject()) cert.set_issuer(self.ca.get_subject())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment