diff options
author | Daniel Baumann <daniel@debian.org> | 2007-09-23 10:04:47 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 18:18:28 +0100 |
commit | 677415f6d7efc1e5b888570d70af311d2900c69c (patch) | |
tree | 32fe7ced768666c229fff913fe12cbbf2fdd34e4 /helpers/lh_binary_hdd | |
parent | 811ff0532fcb3305ebefcd1d61e4eb6c260902eb (diff) | |
download | vyos-live-build-677415f6d7efc1e5b888570d70af311d2900c69c.tar.gz vyos-live-build-677415f6d7efc1e5b888570d70af311d2900c69c.zip |
Adding live-helper 1.0~a2-1.
Diffstat (limited to 'helpers/lh_binary_hdd')
-rwxr-xr-x | helpers/lh_binary_hdd | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/helpers/lh_binary_hdd b/helpers/lh_binary_hdd new file mode 100755 index 000000000..d973db52e --- /dev/null +++ b/helpers/lh_binary_hdd @@ -0,0 +1,46 @@ +#!/bin/sh + +# lh_binary_hdd(1) - build harddisk binary image + +set -e + +# Source common functions +for FUNCTION in /usr/share/live-helper/functions/*.sh +do + . ${FUNCTION} +done + +# Reading configuration files +Read_conffile config/common +Read_conffile config/bootstrap +Read_conffile config/image +Set_defaults + +# Requiring stage file +Require_stagefile .stage/bootstrap + +# Checking lock file +Check_lockfile .lock + +# Creating lock file +Create_lockfile .lock + +# Checking stage file +Check_stagefile .stage/binary_hdd + +for IMAGE in ${LIVE_BINARY_IMAGE} +do + if [ "${IMAGE}" = "hdd" ] + then + # Remove old binary + if [ -f binary-hdd.tar.gz ] + then + rm -f binary-hdd.tar.gz + fi + + tar cfz binary-hdd.tar.gz binary + + # Creating stage file + Create_stagefile .stage/binary_hdd + fi +done |