]> git.proxmox.com Git - mirror_zfs-debian.git/commitdiff
Fix broken initramfs hooks caused by commit 1123dc4
authorCarlos Alberto Lopez Perez <clopez@igalia.com>
Wed, 10 Apr 2013 03:51:59 +0000 (05:51 +0200)
committerCarlos Alberto Lopez Perez <clopez@igalia.com>
Wed, 10 Apr 2013 03:54:33 +0000 (05:54 +0200)
 * The hooks were copying the required files for supporting the
   deprecated zdev.conf syntax.

 * Remove the deleted files from the list.

 * Plus: remove a trailing space.

debian/tree/zfsutils/usr/share/initramfs-tools/hooks/zdev

index c4d66dd5a042ca792c41aa2ee4854898123d0497..0cf21a4211a859e9153e6667fad50934e3622fb5 100755 (executable)
@@ -4,8 +4,8 @@
 #
 
 PREREQ="udev"
-PREREQ_UDEV_RULES="60-zpool.rules 60-zvol.rules 69-vdev.rules"
-COPY_EXEC_LIST="/lib/udev/vdev_id /lib/udev/zvol_id /lib/udev/zpool_id"
+PREREQ_UDEV_RULES="60-zvol.rules 69-vdev.rules"
+COPY_EXEC_LIST="/lib/udev/zvol_id /lib/udev/vdev_id"
 
 # Generic result code.
 RC=0
@@ -56,7 +56,7 @@ done
 
 if [ -f '/etc/default/zfs' -a -r '/etc/default/zfs' ]
 then
-       mkdir -p "$DESTDIR/etc/default" 
+       mkdir -p "$DESTDIR/etc/default"
        cp -a '/etc/default/zfs' "$DESTDIR/etc/default/"
 fi