Skip to content

Commit

Permalink
1876 - Add in a sample program to generate the file
Browse files Browse the repository at this point in the history
  • Loading branch information
bkearney committed Apr 28, 2016
1 parent 5c29852 commit 91791ed
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/tech-reference/iso-plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,18 @@ example ``PULP_MANIFEST`` file::
example-1.0.iso,f02d5a72cd2d57fa802840a76b44c6c6920a8b8e6b90b20e26c03876275069e0,127346
example-1.1.iso,c7fbc0e821c0871805a99584c6a384533909f68a6bbe9a2a687d28d9f3b10c16,564830

This file can be generated by a script such as:

::

#!/usr/bin/env bash

for file in $@
do
echo $file,`sha256sum $file | awk '{ print $1 }'`,`stat -L -c '%s' $file`
done


Configuration Parameters
------------------------

Expand Down

0 comments on commit 91791ed

Please sign in to comment.