Last active
March 23, 2024 12:53
-
-
Save CzBiX/e5aec53a63fc12f7d50e to your computer and use it in GitHub Desktop.
Revisions
-
CzBiX revised this gist
Oct 23, 2015 . 1 changed file with 8 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ #!/bin/sh # see: https://bugzilla.redhat.com/show_bug.cgi?id=921235 # http://forums.debian.net/viewtopic.php?f=5&t=119644 PREREQ="lvm2" @@ -15,6 +16,10 @@ prereqs) ;; esac if [ ! -x /usr/sbin/cache_check ]; then exit 0 fi . /usr/share/initramfs-tools/hook-functions copy_exec /usr/sbin/cache_check @@ -25,7 +30,7 @@ copy_exec /usr/sbin/thin_check copy_exec /usr/sbin/thin_dump copy_exec /usr/sbin/thin_repair copy_exec /usr/sbin/thin_restore for x in dm_cache dm_cache_smq dm_thin_pool; do manual_add_modules ${x} done -
CzBiX revised this gist
Aug 3, 2015 . No changes.There are no files selected for viewing
-
CzBiX created this gist
Aug 3, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,31 @@ #!/bin/sh # http://forums.debian.net/viewtopic.php?f=5&t=119644 PREREQ="lvm2" prereqs() { echo "$PREREQ" } case $1 in prereqs) prereqs exit 0 ;; esac . /usr/share/initramfs-tools/hook-functions copy_exec /usr/sbin/cache_check copy_exec /usr/sbin/cache_dump copy_exec /usr/sbin/cache_repair copy_exec /usr/sbin/cache_restore copy_exec /usr/sbin/thin_check copy_exec /usr/sbin/thin_dump copy_exec /usr/sbin/thin_repair copy_exec /usr/sbin/thin_restore copy_exec /sbin/dmeventd manual_add_modules dm_cache_mq manual_add_modules dm_thin_pool