Adding sample hook to add custom /etc/modules entries.

This commit is contained in:
Daniel Baumann 2009-01-09 16:50:21 +01:00
parent c83edb9134
commit b3d13b21e1
1 changed files with 15 additions and 0 deletions

15
examples/hooks/modules.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
# This is a hook for live-helper(7) to add entries to /etc/modules.
# To enable it, copy or symlink this hook into your config/chroot_local-hooks
# directory.
MODULES=""
for MODULE in ${MODULES}
do
if ! grep -qs /etc/modules ${MODULE}
then
echo ${MODULE} >> /etc/modules
fi
done