deletelist.txt info

This commit is contained in:
zzz
2011-11-28 17:56:29 +00:00
parent 265d396d63
commit 546708a85a

View File

@ -1,7 +1,7 @@
{% extends "_layout.html" %}
{% block title %}I2P Software Update Specification{% endblock %}
{% block content %}
Page last updated June 2011, current as of router version 0.8.7
Page last updated November 2011, current as of router version 0.8.12
<h3>Overview</h3>
<p>
I2P uses a simple, yet secure, system for automated software update.
@ -76,11 +76,26 @@ verifes that the zip file comment matches the header version, as explained above
</p><p>
The zip file is extracted in the base $I2P installation directory.
</p><p>
Recent router versions support Pack200 decompression.
As of release 0.7.12, the router supports Pack200 decompression.
Files inside the zip archive with a .jar.pack or .war.pack suffix
are transparently decompressed to a .jar or .war file.
Update files containing .pack files are traditionally named with a '.su2' suffix.
Pack200 shrinks the update files by about 60%.
</p><p>
As of release 0.8.7, the router will delete the libjbigi.so and libjcpuid.so files
if the zip archive contains a lib/jbigi.jar file, so that the new files will
be extracted from jbigi.jar.
</p><p>
As of release 0.8.12, if the zip archive contains a file deletelist.txt, the router will
delete the files listed there. The format is:
<ul><li>
One file name per line
</li><li>
All file names are relative to the installation directory; no absolute file names allowed, no files starting with ".."
</li><li>
Comments start with '#'
</li></ul>
The router will then delete the deletelist.txt file.
</p>