diff options
author | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2016-11-12 13:09:25 +0000 |
---|---|---|
committer | Martin Whitaker <mageia@martin-whitaker.me.uk> | 2016-11-12 13:09:25 +0000 |
commit | 7ea33eb861be71a8bfc0245a7d4764582d42f930 (patch) | |
tree | 54d555220ef3ef47b76933071707328034bc16b5 /draklive | |
parent | ff3494386c4109b22a8b9d3ad96838a1a89e2858 (diff) | |
download | drakiso-7ea33eb861be71a8bfc0245a7d4764582d42f930.tar drakiso-7ea33eb861be71a8bfc0245a7d4764582d42f930.tar.gz drakiso-7ea33eb861be71a8bfc0245a7d4764582d42f930.tar.bz2 drakiso-7ea33eb861be71a8bfc0245a7d4764582d42f930.tar.xz drakiso-7ea33eb861be71a8bfc0245a7d4764582d42f930.zip |
draklive: generate sha512 checksum and DATE.txt in ISO master step.
Diffstat (limited to 'draklive')
-rwxr-xr-x | draklive | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -785,6 +785,8 @@ sub build_iso_image { run_('mgaiso-addmd5', '>', '/dev/null', '2>', '/dev/null', $dest); run_({ chdir => $dir }, 'md5sum', '>', $dest . '.md5', $filename); run_({ chdir => $dir }, 'sha1sum', '>', $dest . '.sha1', $filename); + run_({ chdir => $dir }, 'sha512sum', '>', $dest . '.sha512', $filename); + run_({ chdir => $dir }, 'date', '>', $dir . '/DATE.txt'); if (my $suffix = $live->get_set_suffix) { if (my ($prefix, $ext) = $dest =~ /(.*)(\.[^.]+)$/) { my $link = $prefix . $suffix . $ext; |