Run hooks in sorted order (Closes: #745839).

glob.glob() returns files in filesystem order, which is unpredictable
on many modern filesystems.
This commit is contained in:
Simon McVittie 2014-04-25 17:08:20 +01:00 committed by Daniel Baumann
parent 1867dc1e52
commit c3bd85f0de
4 changed files with 4 additions and 4 deletions

View File

@ -80,7 +80,7 @@ def main():
hooks = glob.glob('config/hooks/*.hook') + glob.glob('config/hooks/*.hook.binary')
for hook in hooks:
for hook in sorted(hooks):
if verbose:
print('I: Copying config/hooks/*.hook.binary to binary/live-build')

View File

@ -80,7 +80,7 @@ def main():
hooks = glob.glob('config/hooks/*.hook') + glob.glob('config/hooks/*.hook.bootstrap')
for hook in hooks:
for hook in sorted(hooks):
if verbose:
print('I: Copying config/hooks/*.hook.bootstrap to chroot/live-build')

View File

@ -80,7 +80,7 @@ def main():
hooks = glob.glob('config/hooks/*.hook') + glob.glob('config/hooks/*.hook.chroot')
for hook in hooks:
for hook in sorted(hooks):
if verbose:
print('I: Copying config/hooks/*.hook.chroot to chroot/live-build')

View File

@ -80,7 +80,7 @@ def main():
hooks = glob.glob('config/hooks/*.hook') + glob.glob('config/hooks/*.hook.source')
for hook in hooks:
for hook in sorted(hooks):
if verbose:
print('I: Copying config/hooks/*.hook.source to source/live-build')