summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xexamples/hooks/linux-modules.chroot15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/hooks/linux-modules.chroot b/examples/hooks/linux-modules.chroot
deleted file mode 100755
index 8b07294bf..000000000
--- a/examples/hooks/linux-modules.chroot
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-# This is a hook for live-build(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