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_source_net | |
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_source_net')
-rwxr-xr-x | helpers/lh_source_net | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/helpers/lh_source_net b/helpers/lh_source_net index 30a8b8389..0f60ddc88 100755 --- a/helpers/lh_source_net +++ b/helpers/lh_source_net @@ -17,7 +17,6 @@ Set_defaults if [ "${LIVE_SOURCE}" = "disabled" ] then - echo "W: source images disabled (FIXME)" exit 0 fi @@ -26,28 +25,27 @@ do if [ "${IMAGE}" = "net" ] then # Requiring stage file - Require_stagefile "${LIVE_ROOT}"/.stage/source_download + Require_stagefile .stage/source_download # Checking lock file - Check_lockfile "${LIVE_ROOT}"/.lock + Check_lockfile .lock # Creating lock file - Create_lockfile "${LIVE_ROOT}"/.lock + Create_lockfile .lock # Checking stage file - Check_stagefile "${LIVE_ROOT}"/.stage/source_net + Check_stagefile .stage/source_net # Remove old source - if [ -f "${LIVE_ROOT}"/source.tar.gz ] + if [ -f source-net.tar.gz ] then - rm -f "${LIVE_ROOT}"/source.tar.gz + rm -f source-net.tar.gz fi # Create tarball - cd "${LIVE_ROOT}" && - tar cfz source.tar.gz source + tar cfz source-net.tar.gz source # Creating stage file - Create_stagefile "${LIVE_ROOT}"/.stage/source_net + Create_stagefile .stage/source_net fi done |