diff options
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/hooks/modules.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/hooks/modules.sh b/examples/hooks/modules.sh new file mode 100755 index 000000000..159e9bc52 --- /dev/null +++ b/examples/hooks/modules.sh @@ -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 |