summaryrefslogtreecommitdiff
path: root/hooks
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2006-07-29 14:49:39 +0200
committermaximilian attems <maks@debian.org>2006-07-29 14:49:39 +0200
commit5d46a04527bd3023e4f34cc99029ffc281f42110 (patch)
treeb9104286af5a3ca6778cc836581b86ab5a3573fc /hooks
parent8761821795732a9755d673e92fb45ac9202270df (diff)
- take care of partial mdadm/lvm Sarge upgrades
this compat stuff can go once Etch is released - framebuffer stuff for usplash - don't leave modules file behind - thanks piuparts!
Diffstat (limited to 'hooks')
-rwxr-xr-xhooks/lvm27
1 files changed, 0 insertions, 27 deletions
diff --git a/hooks/lvm b/hooks/lvm
deleted file mode 100755
index 49a8887..0000000
--- a/hooks/lvm
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-PREREQ=""
-
-prereqs()
-{
- echo "$PREREQ"
-}
-
-case $1 in
-prereqs)
- prereqs
- exit 0
- ;;
-esac
-
-if [ ! -x /sbin/vgchange -a ! -d /lib/lvm-200 ]; then
- exit 0
-fi
-
-. /usr/share/initramfs-tools/hook-functions
-
-copy_exec /lib/lvm-200/vgchange /sbin
-
-for x in dm_mod dm_snapshot dm_mirror; do
- manual_add_modules ${x}
-done