From: Victor Lowther Date: Fri, 13 Feb 2009 12:42:57 +0000 (-0800) Subject: [PATCH 36/50] Move cat into the list of required executables X-Git-Tag: 0.1~442 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=75ec5873afdbf6a304fa2eddb9a789068e0476b6;p=thirdparty%2Fdracut.git [PATCH 36/50] Move cat into the list of required executables --- diff --git a/dracut b/dracut index c5f68c74d..530524c0b 100755 --- a/dracut +++ b/dracut @@ -43,11 +43,11 @@ initdir=$(mktemp -d -t initramfs.XXXXXX) trap 'rm -rf "$initdir"' 0 # clean up after ourselves no matter how we die. # executables that we have to have -exe="/bin/bash /bin/mount /bin/mknod /bin/mkdir /sbin/modprobe /sbin/udevd /sbin/udevadm /sbin/nash /sbin/pidof /bin/sleep /usr/sbin/chroot /bin/echo" +exe="/bin/bash /bin/mount /bin/mknod /bin/mkdir /sbin/modprobe /sbin/udevd /sbin/udevadm /sbin/nash /sbin/pidof /bin/sleep /usr/sbin/chroot /bin/echo /bin/cat" lvmexe="/sbin/lvm" cryptexe="/sbin/cryptsetup" # and some things that are nice for debugging -debugexe="/bin/ls /bin/cat /bin/ln /bin/ps /bin/grep /bin/more /bin/dmesg" +debugexe="/bin/ls /bin/ln /bin/ps /bin/grep /bin/more /bin/dmesg" # udev things we care about udevexe="/lib/udev/vol_id /lib/udev/console_init"