summaryrefslogtreecommitdiffstats
path: root/ship/lib
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2014-03-10 23:06:50 +0100
committermakefu <github@syntax-fehler.de>2014-03-10 23:06:50 +0100
commitee63a28d029408a9a3012917a5169df5addd239a (patch)
tree8371e0082741a1151a82af7ac323be9b00f1b967 /ship/lib
parent0970f673456cf8bef932aef048bb89f6178eb104 (diff)
add volid finder for remastering scripts
Diffstat (limited to 'ship/lib')
-rw-r--r--ship/lib/iso7
1 files changed, 7 insertions, 0 deletions
diff --git a/ship/lib/iso b/ship/lib/iso
new file mode 100644
index 00000000..0776d796
--- /dev/null
+++ b/ship/lib/iso
@@ -0,0 +1,7 @@
+get_volid(){
+ #returns the volume id of the iso given
+ # is needed for remastering the archlinux iso
+
+ #punani install genisoimage
+ isoinfo -d -i "${1?path to iso must be given}" | grep "^Volume id:" | cut -d: -f 2 |xargs
+}