diff options
author | Daniel Baumann <daniel@debian.org> | 2012-07-19 03:20:08 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2012-07-19 03:20:08 +0200 |
commit | 6d45398eddcf8784e5f142ba77969f1949077fb7 (patch) | |
tree | ec174566d22e5efab33033ca96c0a5f88424abe5 /examples | |
parent | 998584f2afeac4356b32c2fd59623a7cdd89c5f2 (diff) | |
download | vyos-live-build-6d45398eddcf8784e5f142ba77969f1949077fb7.tar.gz vyos-live-build-6d45398eddcf8784e5f142ba77969f1949077fb7.zip |
Removing linux-modules.chroot example hook, this can be done by kmods conf.d directories directly.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/hooks/linux-modules.chroot | 15 |
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 |