From dbcae19129fb310cef3330d9e8342602e2845589 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 11 Nov 2009 17:25:50 +0100 Subject: Renaming example hooks and prefixing them with distribution name. --- examples/hooks/lenny_chroot_aufs-modules.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 examples/hooks/lenny_chroot_aufs-modules.sh (limited to 'examples/hooks/lenny_chroot_aufs-modules.sh') diff --git a/examples/hooks/lenny_chroot_aufs-modules.sh b/examples/hooks/lenny_chroot_aufs-modules.sh new file mode 100755 index 000000000..e70dcc749 --- /dev/null +++ b/examples/hooks/lenny_chroot_aufs-modules.sh @@ -0,0 +1,23 @@ +#!/bin/sh + +# This is a hook for live-helper(7) to install aufs drivers +# To enable it, copy or symlink this hook into your config/chroot_local-hooks +# directory. +# +# Note: You only want to use this hook if there is no prebuild aufs-modules-* +# package available for your kernel flavour. + +apt-get install --yes build-essential + +# Building kernel module +which module-assistant || apt-get install --yes module-assistant +module-assistant update + +for KERNEL in /boot/vmlinuz-* +do + VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')" + + module-assistant --non-inter --quiet auto-install aufs -l ${VERSION} +done + +module-assistant clean aufs -- cgit v1.2.3