Fix a typo in the archiso-early hook

Wrong slash! No idea how that happened :)

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Aaron Griffin 2009-01-30 10:50:43 -08:00
parent 02ea49a5d4
commit b3d8310dcb

View File

@ -2,7 +2,7 @@
run_hook () run_hook ()
{ {
# Set our usbdelay time. Default: 0 # Set our usbdelay time. Default: 0
/bin/mkdir -p /etc/modprobe.d/ cd /
echo "options usb-storage delay_use=${usbdelay:-0}" >/ /bin/mkdir -p etc/modprobe.d/
/etc/modprobe.d/usb-delay echo "options usb-storage delay_use=${usbdelay:-0}" > /etc/modprobe.d/usb-delay
} }