diff options
author | Daniel Baumann <daniel@debian.org> | 2010-09-02 14:45:03 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:19 +0100 |
commit | f96497842018f2eca17715318d6b7cfbb69f50e8 (patch) | |
tree | 306d88780553cd3ad2c56d9ad2a529187e97affd /examples/hooks/all_binary_live-helper.sh | |
parent | 36dee770cd97821d549d259cce9d39a49fcbdb62 (diff) | |
download | vyos-live-build-f96497842018f2eca17715318d6b7cfbb69f50e8.tar.gz vyos-live-build-f96497842018f2eca17715318d6b7cfbb69f50e8.zip |
Replacing some references to live-helper with live-build in examples.
Diffstat (limited to 'examples/hooks/all_binary_live-helper.sh')
-rwxr-xr-x | examples/hooks/all_binary_live-helper.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/hooks/all_binary_live-helper.sh b/examples/hooks/all_binary_live-helper.sh index 219193bce..b60f4a339 100755 --- a/examples/hooks/all_binary_live-helper.sh +++ b/examples/hooks/all_binary_live-helper.sh @@ -1,6 +1,6 @@ #!/bin/sh -# This is a hook for live-helper(7) to install live-helper and its config into +# This is a hook for live-build(7) to install live-build and its config into # the binary image. # To enable it, copy or symlink this hook into your config/chroot_local-hooks # directory. @@ -11,14 +11,14 @@ mkdir -p "${DIRECTORY}" cp -a config "${DIRECTORY}" -if [ -e live-helper ] +if [ -e live-build ] then - cp -a live-helper "${DIRECTORY}" + cp -a live-build "${DIRECTORY}" else - mkdir -p "${DIRECTORY}"/live-helper/bin - cp -a /usr/bin/lh* "${DIRECTORY}"/live-helper/bin + mkdir -p "${DIRECTORY}"/live-build/bin + cp -a /usr/bin/lh* "${DIRECTORY}"/live-build/bin - cp -a /usr/share/live/build "${DIRECTORY}"/live-helper/share + cp -a /usr/share/live/build "${DIRECTORY}"/live-build/share - cp -a /usr/share/doc/live-build "${DIRECTORY}"/live-helper/doc + cp -a /usr/share/doc/live-build "${DIRECTORY}"/live-build/doc fi |