aboutsummaryrefslogtreecommitdiffstats
path: root/rc.d
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-08-07 06:48:29 +0000
committerBill Nottingham <notting@redhat.com>2001-08-07 06:48:29 +0000
commit644a0180b7e35b3286616517ca589c9bd5608c81 (patch)
tree4aca889e63ebc7237519b9d9cc73ce48ffdb847e /rc.d
parentd34451922aebdabfc5495b174ad960b0a0188304 (diff)
downloadinitscripts-644a0180b7e35b3286616517ca589c9bd5608c81.tar
initscripts-644a0180b7e35b3286616517ca589c9bd5608c81.tar.gz
initscripts-644a0180b7e35b3286616517ca589c9bd5608c81.tar.bz2
initscripts-644a0180b7e35b3286616517ca589c9bd5608c81.tar.xz
initscripts-644a0180b7e35b3286616517ca589c9bd5608c81.zip
use awk, not grep & other cruft (#49616)
exit happily if ifup is called on a device that doesn't exist and has no alias (fixes all those nasty PCMCIA onboot complaints)
Diffstat (limited to 'rc.d')
-rwxr-xr-xrc.d/init.d/network2
-rwxr-xr-xrc.d/rc.sysinit8
2 files changed, 5 insertions, 5 deletions
diff --git a/rc.d/init.d/network b/rc.d/init.d/network
index b1983871..7ab4ec75 100755
--- a/rc.d/init.d/network
+++ b/rc.d/init.d/network
@@ -31,7 +31,7 @@ fi
# If IPv6 is explicitly configured, make sure it's available.
if [ "$NETWORKING_IPV6" = "yes" ]; then
- alias=`modprobe -c | grep net-pf-10 | awk '{ print $3 }'`
+ alias=`modprobe -c | awk '/^alias net-pf-10 / { print $3 }'`
if [ "$alias" != "ipv6" -a ! -f /proc/net/if_inet6 ]; then
echo "alias net-pf-10 ipv6" >> /etc/modules.conf
fi
diff --git a/rc.d/rc.sysinit b/rc.d/rc.sysinit
index 6b134798..6006907d 100755
--- a/rc.d/rc.sysinit
+++ b/rc.d/rc.sysinit
@@ -160,12 +160,12 @@ action $"Setting hostname ${HOSTNAME}: " hostname ${HOSTNAME}
# Initialize USB controller and HID devices
usb=0
if ! grep -iq "nousb" /proc/cmdline 2>/dev/null && ! grep -q "usb" /proc/devices 2>/dev/null ; then
- aliases=`/sbin/modprobe -c | egrep -s "^alias[[:space:]]+usb-controller" | awk '{ print $3 }'`
+ aliases=`/sbin/modprobe -c | awk '/^alias usb-controller/ { print $3 }'`
if [ -n "$aliases" -a "$aliases" != "off" ] ; then
modprobe usbcore
action $"Mounting USB filesystem: " mount -t usbdevfs usbdevfs /proc/bus/usb
for alias in $aliases ; do
- action $"Initializing USB controller ($alias): " modprobe $alias
+ [ "$alias" != "off" ] && action $"Initializing USB controller ($alias): " modprobe $alias
done
[ $? -eq 0 -a -n "$aliases" ] && usb=1
fi
@@ -403,12 +403,12 @@ fi
# Load sound modules iff they need persistent DMA buffers
if grep -q "options sound dmabuf=1" /etc/modules.conf 2>/dev/null ; then
RETURN=0
- alias=`/sbin/modprobe -c | egrep -s "^alias[[:space:]]+sound[[:space:]]+" | awk '{ print $3 }'`
+ alias=`/sbin/modprobe -c | awk '/^alias sound / { print $3 }'`
if [ -n "$alias" -a "$alias" != "off" ] ; then
action $"Loading sound module ($alias): " modprobe $alias
RETURN=$?
fi
- alias=`/sbin/modprobe -c | egrep -s "^alias[[:space:]]+sound-slot-0[[:space:]]+" | awk '{ print $3 }'`
+ alias=`/sbin/modprobe -c | awk '/^alias sound-slot-0 / { print $3 }'`
if [ -n "$alias" -a "$alias" != "off" ] ; then
action $"Loading sound module ($alias): " modprobe $alias
RETURN=$?