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:
parent
1867dc1e52
commit
c3bd85f0de
|
@ -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')
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
||||
|
|
|
@ -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')
|
||||
|
||||
|
|
Loading…
Reference in New Issue