add create_checksum()

This commit is contained in:
Bernhard Landauer 2017-07-04 22:20:08 +02:00
parent 382a20f5a8
commit b0623173e9

View file

@ -776,3 +776,9 @@ subvolume_delete_recursive() {
return 0
}
create_chksums() {
msg2 "creating checksums for [$1]"
sha1sum $1 > $1.sha1
sha256sum $1 > $1.sha256
}