commit: e59c9f640ac0e4021e0d31a8d2f647e5bd313939
Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Thu Sep 10 16:03:38 2015 +0000
Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Thu Sep 10 16:03:38 2015 +0000
URL:
https://gitweb.gentoo.org/proj/udev-gentoo-scripts.git/commit/?id=e59c9f64
udev: make bins variable local
init.d/udev | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/init.d/udev b/init.d/udev
index 8106a20..458a737 100644
--- a/init.d/udev
+++ b/init.d/udev
@@ -15,7 +15,7 @@ depend()
}
get_udevd_binary() {
- bins="/sbin/udevd /lib/systemd/systemd-udevd
/usr/lib/systemd/systemd-udevd"
+ local bins="/sbin/udevd /lib/systemd/systemd-udevd
/usr/lib/systemd/systemd-udevd"
for f in ${bins}; do
if [ -x "$f" -a ! -L "$f" ]; then
command="$f"