Rename 'modules' to 'filelists' to not confuse people

Signed-off-by: Patrick Uiterwijk <patrick@puiterwijk.org>
This commit is contained in:
Patrick Uiterwijk 2017-10-27 21:22:11 +02:00
parent 2c61d942b3
commit 32ba94008b

View file

@ -132,7 +132,7 @@ def sync_ostree(dst, ref):
def update_fullfilelist(modules):
if not modules:
logger.info('No modulese to update')
logger.info('No filelists to update')
return
cmd = ['/usr/local/bin/update-fullfiletimelist', '-l',
'/tmp/update-fullfiletimelist.lock', '-t', '/pub']
@ -273,7 +273,7 @@ def main():
to_update.extend(RELEASES[release]['modules'])
to_update = list(set(to_update))
logger.info('Modules to update: %s', to_update)
logger.info('Filelists to update: %s', to_update)
update_fullfilelist(to_update)