summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xexamples/hooks/modules.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/hooks/modules.sh b/examples/hooks/modules.sh
new file mode 100755
index 0000000..159e9bc
--- /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