提交 dfb4ed40 编写于 作者: J James Troup

[ajt] support for sha256 in generate_release

上级 ff8d2de3
2007-02-08 Anthony Towns <ajt@debian.org>
* dak/generate_releases.py (print_sha256_files): new function.
(main): use it.
* dak/process_accepted.py (stable_install): fix name of template
mail.
......
......@@ -118,6 +118,9 @@ def print_md5_files (tree, files):
def print_sha1_files (tree, files):
print_md5sha_files (tree, files, apt_pkg.sha1sum)
def print_sha256_files (tree, files):
print_md5sha_files (tree, files, apt_pkg.sha256sum)
################################################################################
def main ():
......@@ -286,6 +289,8 @@ def main ():
print_md5_files(tree, files)
out.write("SHA1:\n")
print_sha1_files(tree, files)
out.write("SHA256:\n")
print_sha256_files(tree, files)
out.close()
if Cnf.has_key("Dinstall::SigningKeyring"):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册