@%@UCRWARNING=# @%@
# /etc/modules: kernel modules to load at boot time.
#
# This file contains the names of kernel modules that should be loaded
# at boot time, one per line. Lines beginning with "#" are ignored.

@!@
if configRegistry['kernel/modules']:
    modules = configRegistry['kernel/modules'].split(';')
    for mod in modules:
        print(mod)
@!@
