summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lamb <chris@chris-lamb.co.uk>2008-01-15 19:51:37 +0000
committerChris Lamb <chris@chris-lamb.co.uk>2008-01-15 19:51:37 +0000
commit2ae4b3bf37fe7c8cc77cf2ceb16c791ff134022b (patch)
tree1eccc79fb9cc3cdbfd30f8770cc8109c84901ac8
parentc84e3c096b526425a85b9dcc68af66274b7bffe7 (diff)
downloadvyos-live-build-2ae4b3bf37fe7c8cc77cf2ceb16c791ff134022b.tar.gz
vyos-live-build-2ae4b3bf37fe7c8cc77cf2ceb16c791ff134022b.zip
Re-order hooks such that local hooks are executed first. (Closes: #453360)
Some non-local hooks clean the chroot too much, resulting in the local hooks having to perform identical clean-up tasks (for example, downloading a package). Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
-rwxr-xr-xhelpers/lh_chroot2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/lh_chroot b/helpers/lh_chroot
index c8502bd0c..1913eb0ef 100755
--- a/helpers/lh_chroot
+++ b/helpers/lh_chroot
@@ -59,8 +59,8 @@ lh_chroot_local-packages ${*}
lh_chroot_localization ${*}
lh_chroot_local-includes ${*}
lh_chroot_sysvinit ${*}
-lh_chroot_hooks ${*}
lh_chroot_local-hooks ${*}
+lh_chroot_hooks ${*}
lh_chroot_symlinks ${*}
lh_chroot_hacks ${*}
lh_chroot_interactive ${*}