diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-12-14 02:38:10 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-12-14 02:38:10 +0000 |
commit | e541294373add52841fc4a47626af081371b41ed (patch) | |
tree | 613badd7bfa0c247f5e892fcc03e679e7e888081 /sys-apps | |
parent | Punt modules-update to the module-init-tools package and scrub all remaining ... (diff) | |
download | historical-e541294373add52841fc4a47626af081371b41ed.tar.gz historical-e541294373add52841fc4a47626af081371b41ed.tar.bz2 historical-e541294373add52841fc4a47626af081371b41ed.zip |
fix error output redirection
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/module-init-tools/files/module-init-tools-3.2_pre7-abort-on-modprobe-failure.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-apps/module-init-tools/files/module-init-tools-3.2_pre7-abort-on-modprobe-failure.patch b/sys-apps/module-init-tools/files/module-init-tools-3.2_pre7-abort-on-modprobe-failure.patch index 2d4c48e491c0..ed217bdc3cb3 100644 --- a/sys-apps/module-init-tools/files/module-init-tools-3.2_pre7-abort-on-modprobe-failure.patch +++ b/sys-apps/module-init-tools/files/module-init-tools-3.2_pre7-abort-on-modprobe-failure.patch @@ -8,7 +8,7 @@ Abort generate-modprobe.conf if modprobe fails, bug #68689. +modprobe_abort() +{ -+ echo Failed to to run modprobe. Giving up. 2>&1 ++ echo Failed to to run modprobe. Giving up. 1>&2 + exit 1 +} + |