Created tag for Live CD/Live USB release v0.3.5 build config
This commit is contained in:
parent
783824bad9
commit
bd96dede76
101 changed files with 9510 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
--- chroot/usr/share/python-support/python-cherrypy/cherrypy/_cpwsgiserver.py 2006-04-24 18:37:45.000000000 -0700
|
||||
+++ chroot/usr/share/cryptonas-live/_cpwsgiserver-copy.py 2008-11-27 22:53:49.000000000 -0700
|
||||
@@ -200,10 +200,17 @@
|
||||
response = request.wsgi_app(request.environ,
|
||||
request.start_response)
|
||||
for line in response:
|
||||
request.write(line)
|
||||
except socket.error, e:
|
||||
+ msg = e.args[1]
|
||||
+ if msg == "Bad file descriptor":
|
||||
+ # Our socket was closed
|
||||
+ return
|
||||
+ if msg == "Resource temporarily unavailable":
|
||||
+ # Just try again. See http://www.cherrypy.org/ticket/479.
|
||||
+ return
|
||||
errno = e.args[0]
|
||||
if errno not in socket_errors_to_ignore:
|
||||
traceback.print_exc()
|
||||
except (KeyboardInterrupt, SystemExit), exc:
|
||||
self.server.interrupt = exc
|
|
@ -0,0 +1,4 @@
|
|||
##Support VIA ACE Padlock hardware crypto acceleration
|
||||
padlock
|
||||
##Support AMD Geode AES-128 hardware crypto acceleration
|
||||
geode-aes
|
|
@ -0,0 +1,12 @@
|
|||
#CryptoNAS Live default /etc/network/interfaces
|
||||
#Set $CNAS_INTERFACES in config/cnas-custom-settings to override
|
||||
|
||||
|
||||
auto lo eth0
|
||||
iface lo inet loopback
|
||||
|
||||
#iface eth0 inet dhcp
|
||||
|
||||
iface eth0 inet static
|
||||
address 192.168.0.23
|
||||
netmask 255.255.255.0
|
Loading…
Add table
Add a link
Reference in a new issue